-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
31 lines (31 loc) · 976 Bytes
/
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
{
"name": "@wbt/root",
"private": true,
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"husky": ">=7",
"lerna": "^4.0.0",
"lint-staged": ">=12",
"prettier": "^2.5.1",
"typescript": "^4.5.0"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"start": "lerna run start --parallel",
"start:core": "lerna run start --scope @wbt/core",
"start:web": "lerna run start --parallel --ignore @wbt/mobile",
"start:ios": "lerna run ios --scope @wbt/mobile",
"start:android": "lerna run android --scope @wbt/mobile",
"test": "lerna run test",
"lint": "eslint '**/*.{ts,tsx}' --max-warnings 0 --cache",
"prepare": "husky install"
},
"lint-staged": {
"*.{ts,tsx}": "eslint --fix --max-warnings 0 --cache"
}
}