This repository has been archived by the owner on Jan 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 477
/
package.json
53 lines (53 loc) · 1.55 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"format": "prettier --write .",
"build": "lerna run prepare --stream",
"postinstall": "yarn-deduplicate && 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}\" --ignore create-expo-app --ignore expo-optimize --ignore pod-install --ignore uri-scheme --ignore install-expo-modules 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": {
"@babel/cli": "^7.8.4",
"@expo/spawn-async": "^1.5.0",
"@types/jest": "^26.0.8",
"@types/node": "^12",
"@tsconfig/node12": "^1.0.7",
"@vercel/ncc": "^0.33.4",
"codecov": "^3.6.5",
"eslint": "^8.13.0",
"eslint-config-universe": "^10.0.0",
"expo-yarn-workspaces": "^1.2.1",
"husky": "^1.1.3",
"jest": "^27.5.1",
"jest-watch-typeahead": "^1.0.0",
"lerna": "3.22.1",
"lint-staged": "^8.0.4",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"memfs": "^2.15.5",
"typescript": "4.6.3",
"yarn-deduplicate": "^3.1.0"
},
"volta": {
"node": "16.14.2"
}
}