-
-
Notifications
You must be signed in to change notification settings - Fork 95
/
package.json
executable file
·47 lines (47 loc) · 1.32 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
{
"name": "Serenity",
"version": "0.0.1",
"private": true,
"scripts": {
"setup": "scripts/setup",
"build": "scripts/build",
"bump-patch": "turbo run bump-patch",
"bump-minor": "turbo run bump-minor",
"android": "turbo run android --scope=mobile",
"ios": "turbo run ios --scope=mobile",
"pod": "turbo run pod-install --scope=mobile",
"start": "turbo run start --scope=mobile",
"web": "turbo run start --scope=web",
"release": "turbo run release --scope=mobile",
"test": "turbo run test",
"lint": "turbo run lint",
"format": "prettier --write .",
"xcode": "turbo run xcode --scope=mobile"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"workspaces": {
"packages": [
"packages/*",
"apps/*"
]
},
"devDependencies": {
"@react-native-community/eslint-config": "^2.0.0",
"eslint": "^7.14.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-workspaces": "^0.6.2",
"husky": "^6.0.0",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"turbo": "^1.5.3",
"typescript": "^4.2.3"
}
}