This repository was archived by the owner on Jan 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.87 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.87 KB
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
64
65
66
67
{
"name": "apollos",
"private": true,
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/react-native",
"**/react-native/**",
"**/react-native-*",
"**/react-native-*/**"
]
},
"scripts": {
"start": "if test \"$NOW_ENV\" = \"true\" ; then yarn start:now ; else yarn start:dev ; fi",
"start:now": "./node_modules/.bin/lerna run start --scope apollos-church-api",
"start:dev": "./node_modules/.bin/lerna run start --parallel",
"lint": "./node_modules/.bin/lerna run lint",
"test": "./node_modules/.bin/lerna run test",
"ci-test": "./node_modules/.bin/lerna run test --stream -- --maxWorkers=2",
"storybook": "./node_modules/.bin/lerna run storybook --stream --scope newspringchurchapp",
"ios": "./node_modules/.bin/lerna run ios --stream --scope newspringchurchapp",
"android": "./node_modules/.bin/lerna run android --stream --scope newspringchurchapp",
"release": "./node_modules/.bin/lerna publish --no-push && echo \"Release has been tagged!\nPlease look over the CHANGELOG.md file, and use 'git commit -amend' to amend any edits.\nWhen done, be sure to 'git push --tags' and create a release PR\"",
"bump": "./node_modules/.bin/lerna run bump",
"preversion": "./scripts/update-change-log.sh",
"prepublish": "./node_modules/.bin/lerna run build",
"publish-schema": "./node_modules/.bin/apollo schema:publish --endpoint=\"https://apollos-church-api.now.sh\" --key=$ENGINE_API_KEY",
"nuke": "./scripts/boom.sh && yarn nuke:node && yarn nuke:cache",
"nuke:node": "rm -rdf ./node_modules packages/*/node_modules && yarn cache clean && yarn",
"nuke:cache": "watchman watch-del-all && ./node_modules/.bin/lerna run start --scope newspringchurchapp --stream -- --reset-cache",
"postinstall": "lerna run postinstall && lerna run build --parallel",
"pods": "lerna run pods --stream --scope newspringchurchapp"
},
"resolutions": {
"babel-core": "7.0.0-bridge.0"
},
"devDependencies": {
"@babel/cli": "7.1.5",
"@babel/core": "7.1.6",
"@babel/node": "7.0.0",
"@babel/parser": "7.1.6",
"@babel/runtime": "7.1.5",
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"apollo": "^1.9.2",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.1",
"babel-jest": "23.6.0",
"babel-plugin-module-resolver": "3.1.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-import-resolver-babel-module": "^5.0.0-beta.0",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jest": "^21.15.2",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.10.0",
"eslint-plugin-react-native": "^3.2.1",
"husky": "^3.0.5",
"lerna": "^3.0.6",
"prettier": "^1.14.2"
}
}