-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 1.23 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "@freshworks-jaya/jaya-lib",
"description": "Collection of libraries for building Freshchat Marketplace Apps",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "lerna run clean --parallel",
"build": "lerna run build --no-private",
"watch": "lerna run watch --parallel",
"test": "lerna run test --no-private --stream --concurrency 1",
"lint": "lerna run lint"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@types/node": "^15.12.2",
"@typescript-eslint/parser": "^4.26.1",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.1.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-typescript-sort-keys": "^1.6.0",
"husky": "^6.0.0",
"lerna": "^4.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.1",
"typescript": "^4.3.2"
},
"lint-staged": {
"*.ts": [
"eslint"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn build"
}
},
"resolutions": {
"handlebars": "4.7.7",
"striptags": "3.2.0",
"braces": "2.3.1",
"set-getter": "0.1.1",
"minimatch": "3.0.5"
}
}