-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.75 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": "apollos",
"private": true,
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": []
},
"scripts": {
"lint": "lerna run lint",
"test": "TZ=utc lerna run test",
"release": "lerna publish --conventional-commits --create-release github --force-publish",
"release:canary": "lerna publish --canary --preid canary",
"release:next": "lerna publish --canary premajor --dist-tag next --preid canary",
"prepublishOnly": "lerna run build && lerna run generate-stories",
"nuke": "./scripts/boom.sh && yarn nuke:node && yarn nuke:cache",
"nuke:node": "rm -rdf ./node_modules packages/*/node_modules && yarn",
"nuke:cache": "watchman watch-del-all",
"postinstall": "lerna run build --parallel",
"generate-stories": "lerna run generate-stories",
"app": "yarn && (cd templates/mobile && yarn && yarn prestart && yarn ios)",
"storybook": "yarn && yarn generate-stories && (cd ApollosStorybook && yarn && yarn prestart && yarn ios)"
},
"resolutions": {
"babel-core": "7.0.0-bridge.0"
},
"devDependencies": {
"@babel/cli": "7.16.8",
"@babel/core": "7.16.12",
"@babel/node": "7.16.8",
"@babel/parser": "7.16.12",
"@babel/preset-flow": "^7.0.0",
"@babel/runtime": "7.16.7",
"@react-native-community/eslint-config": "^3.0.0",
"apollo-server": "^2.11.0",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "27.4.6",
"canvas": "^2.9.3",
"chokidar": "^3.0.1",
"codecov": "3.7.1",
"conventional-changelog-conventionalcommits": "^4.5.0",
"eslint": "^7.28.0",
"eslint-import-resolver-babel-module": "^5.0.0-beta.0",
"eslint-plugin-react": "^7.26.1",
"lerna": "^4.0.0",
"react-native-storybook-loader": "^1.8.0"
},
"dependencies": {}
}