forked from animavita/animavita
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.48 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
54
55
56
57
58
59
60
61
62
63
{
"name": "animavita",
"version": "1.0.0",
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"android": "yarn workspace @animavita/expo android",
"delete:all": "yarn delete:metro-cache && yarn delete:node_modules && yarn delete:yarn.lock && yarn delete:dist && yarn delete:build && yarn delete:generated && yarn delete:cdk",
"delete:build": "find . -name \"build\" -exec rm -rf '{}' +",
"delete:cdk": "find . -name \"cdk.out\" -exec rm -rf '{}' +",
"delete:dist": "find . -name \"dist\" -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 '{}' +",
"deploy:staging": "scripts/DeployStaging.sh",
"expo:test": "yarn workspace @animavita/expo test",
"graphql": "yarn workspace @animavita/graphql start",
"graphql:test": "yarn workspace @animavita/graphql test",
"postinstall": "cd ./packages/expo && expo-yarn-workspaces postinstall && patch-package",
"ios": "yarn workspace @animavita/expo ios",
"lint": "eslint --fix --ext .js,jsx,.ts,.tsx .",
"lint:ci": "eslint --quiet --ext .js,jsx,.ts,.tsx .",
"lint:fix": "eslint --fix --ext .js,jsx,.ts,.tsx .",
"relay": "yarn workspace @animavita/relay compile",
"relay:watch": "yarn workspace @animavita/relay watch",
"start": "yarn workspace @animavita/expo start",
"storybook": "yarn workspace @animavita/ui storybook",
"test": "yarn expo:test && yarn ui:test && yarn graphql:test",
"ui:test": "yarn workspace @animavita/ui test",
"update:schema": "yarn workspace @animavita/graphql update:schema",
"web": "yarn workspace @animavita/expo web"
},
"lint-staged": {
"*.yml": [
"yarn prettier --write"
],
"*.{js,jsx,ts,tsx}": [
"yarn prettier --write",
"yarn lint"
],
"package.json": [
"yarn prettier --write",
"yarn sort-package-json \"package.json\" \"packages/*/package.json\""
]
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"concurrently": "^5.1.0",
"console-helpers": "^0.0.4",
"husky": "^4.0.6",
"jest-junit": "^10.0.0",
"lint-staged": "^10.0.7",
"prettier": "^1.19.1",
"sort-package-json": "^1.38.3",
"typescript": "3.7.5"
}
}