-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 2.41 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
{
"name": "willow-creek-apollos",
"private": true,
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/**"
]
},
"engines": {
"node": ">=8.11.2"
},
"scripts": {
"start": "if test \"$API_ENV\" = \"true\" ; then yarn start:api ; else yarn start:dev ; fi",
"start:api": "./node_modules/.bin/lerna run start --scope apollos-api",
"start:dev": "./node_modules/.bin/lerna run start --parallel",
"ios": "lerna run ios",
"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",
"release": "./node_modules/.bin/lerna version --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\"",
"preversion": "./scripts/update-change-log.sh",
"publish-schema": "./node_modules/.bin/apollo schema:publish --endpoint=\"https://apollos-church-api.now.sh\" --key=$ENGINE_API_KEY",
"deploy": "now --public --team apolloschurch --token $NOW_TOKEN --docker && now alias --team apolloschurch --token $NOW_TOKEN && now rm apollos-church-api --team apolloschurch --safe --yes --token $NOW_TOKEN && npm run publish-schema",
"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 apolloschurchapp --stream -- --reset-cache",
"postinstall": "lerna run postinstall && lerna run build",
"pods": "lerna run pods --stream --scope WillowCreekApp"
},
"devDependencies": {
"@apollosproject/eslint-config": "1.4.0-beta.1",
"babel-eslint": "^10.0.2",
"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-graphql": "^3.0.3",
"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",
"lerna": "^3.0.6",
"prettier": "^1.18.2"
},
"dependencies": {
"graphql": "^15.0.0"
}
}