-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.87 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
{
"name": "booksapp",
"version": "0.0.1",
"private": true,
"license": "MIT",
"author": "Jean Leonço",
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"android": "yarn workspace @workspace/app android",
"app": "yarn workspace @workspace/app start",
"app:pod": "yarn workspace @workspace/app pod:install",
"db:seed": "yarn workspace @workspace/server seed",
"delete:all": "yarn delete:build && yarn delete:generated && yarn delete:metro-cache && yarn delete:node_modules",
"delete:build": "find . -name \"build\" -exec rm -rf '{}' +",
"delete:generated": "find . -name \"__generated__\" -exec rm -rf '{}' +",
"delete:metro-cache": "find . -name \"metro-cache\" -exec rm -rf '{}' +",
"delete:node_modules": "find . -name \"node_modules\" -exec rm -rf '{}' +",
"delete:yarn.lock": "find . -name \"yarn.lock\" -exec rm -rf '{}' +",
"postinstall": "yarn patch-package",
"ios": "yarn workspace @workspace/app ios",
"lint": "eslint --fix --ext .js,.ts,.tsx",
"lint:fix": "eslint --fix --ext .js,.ts,.tsx .",
"prettier": "prettier",
"relay": "yarn workspace @workspace/app relay",
"server": "yarn workspace @workspace/server start",
"server:build": "yarn workspace @workspace/server build",
"server:test": "yarn workspace @workspace/server test",
"startup": "./scripts/startup.sh",
"test": "jest",
"update": "yarn update-schema && yarn relay",
"update-schema": "yarn workspace @workspace/server update-schema",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/jest": "^26.0.23",
"husky": "^6.0.0",
"jest": "^27.0.6",
"lint-staged": "^11.0.0",
"patch-package": "^6.4.7",
"prettier": "^2.3.2",
"sort-package-json": "^1.50.0",
"typescript": "^4.3.5"
}
}