forked from expo/expo-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.39 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"format": "prettier --write .",
"build": "lerna run prepare --stream",
"postinstall": "expo-yarn-workspaces check-workspace-dependencies",
"publish": "echo \"This script is deprecated. Run \\\"node ./scripts/publish.js\\\" instead.\"; exit 1",
"start": "lerna --ignore \"@expo/{dev-tools,next-adapter,electron-adapter}\" --ignore expo-optimize --ignore pod-install --ignore uri-scheme run watch --parallel",
"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",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"dependencies": {
"@expo/spawn-async": "^1.5.0",
"@types/node": "^12",
"@types/jest": "^26.0.8",
"@vercel/ncc": "^0.27.0",
"codecov": "^3.6.5",
"eslint": "^6.6.0",
"eslint-config-universe": "^4.0.0",
"expo-yarn-workspaces": "^1.2.1",
"husky": "^1.1.3",
"jest": "^26.2.2",
"jest-watch-typeahead": "^0.6.0",
"lerna": "3.4.1",
"lint-staged": "^8.0.4",
"prettier": "^2.0.5",
"typescript": "^3.8.3"
},
"resolutions": {
"@types/webpack": "4.41.18",
"hermes-engine": "0.0.0"
}
}