forked from expo/expo-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "lerna bootstrap",
"postbootstrap": "lerna run prepare --stream",
"prebootstrap": "yarn",
"publish": "echo \"This script is deprecated. Run \\\"node ./scripts/publish.js\\\" instead.\"; exit 1",
"start": "yarn run bootstrap && lerna run watch --parallel --ignore @expo/dev-tools",
"tsc": "echo 'You are trying to run \"tsc\" in the workspace root. Run it from an individual package instead.' && exit 1",
"lint": "eslint . --ext js,ts"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"devDependencies": {
"@expo/spawn-async": "^1.5.0",
"eslint": "^6.6.0",
"eslint-config-universe": "^2.1.0",
"husky": "^1.1.3",
"lerna": "3.4.1",
"lint-staged": "^8.0.4",
"prettier": "^1.19.0"
},
"resolutions": {
"@types/webpack": "4.32.1"
}
}