forked from beda-software/sdc-ide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.78 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
49
50
51
52
53
54
55
56
{
"private": true,
"resolutions": {
"**/@typescript-eslint/eslint-plugin": "^4.1.1",
"**/@typescript-eslint/parser": "^4.1.1"
},
"scripts": {
"clean": "lerna clean",
"bootstrap": "lerna bootstrap",
"test": "lerna run test --stream --concurrency=1 --",
"test:web": "lerna run test --stream --concurrency=1 --scope web --",
"test:mobile": "lerna run test --stream --concurrency=1 --scope mobile --",
"start": "lerna run --parallel start",
"start:web": "lerna run start --parallel --scope web",
"start:mobile": "lerna run start --parallel --scope mobile",
"build": "lerna run --parallel build",
"typecheck": "lerna run --parallel typecheck"
},
"devDependencies": {
"@react-native-community/eslint-config": "^2.0.0",
"@types/node": "^14.14.2",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"eslint-config-prettier": "^6.14.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-unused-imports": "^0.1.3",
"husky": "^4.3.0",
"lerna": "^3.22.1",
"lint-staged": "^10.4.2",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"typescript": "^4.0.5"
},
"workspaces": {
"packages": [
"web",
"mobile",
"shared"
],
"nohoist": [
"**/react-native",
"**/react-native/**",
"**/react-native-navigation",
"**/react-native-navigation/**"
]
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --fix",
"*.{js,jsx,ts,tsx,css,md}": "prettier --write"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}