-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.05 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
{
"name": "expo-experiments",
"scripts": {
"start": "cd packages/my-app && expo start -c",
"lint": "turbo lint",
"dev": "turbo dev --concurrency 20",
"test": "turbo test -- --coverage",
"typecheck": "npm run typecheck --workspaces",
"prepare": "husky || turbo telemetry disable || true",
"build": "turbo build",
"postinstall": "patch-package"
},
"private": true,
"workspaces": [
"packages/*"
],
"volta": {
"node": "20.18.0",
"npm": "10.9.0"
},
"eslintConfig": {
"root": true
},
"overrides": {
"react": "18.2.0",
"react-native": "0.74.5"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@commitlint/types": "^19.5.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"patch-package": "^8.0.0",
"prettier": "^3.4.1",
"prettier-plugin-sh": "^0.14.0",
"ts-node": "^10.9.2",
"turbo": "^2.3.3"
},
"packageManager": "[email protected]",
"dependencies": {
"wait-on": "^8.0.1"
}
}