-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1017 Bytes
/
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
{
"author": "Tristan Matthias <[email protected]>",
"private": true,
"license": "MIT",
"scripts": {
"postinstall": "lerna bootstrap",
"build": "lerna run build --concurrency 1",
"test": "jest",
"clean-build": "yarn lerna clean -y; rimraf node_modules; yarn; yarn lerna link; yarn build",
"publish:patch": "yarn build && lerna publish patch",
"publish:pre": "yarn build && lerna publish --canary --preid alpha",
"publish:minor": "yarn build && lerna publish minor"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@types/jest": "^25.1.3",
"@types/node": "^13.7.1",
"graphql": "^14.5.8",
"jest": "^25.1.0",
"jest-extended": "^0.11.5",
"lerna": "^3.18.4",
"rimraf": "^3.0.0",
"ts-jest": "^25.2.1",
"tslint": "^5.20.1",
"tslint-config-airbnb": "^5.11.2",
"typescript": "^3.7.2"
},
"publishConfig": {
"access": "public"
},
"resolutions": {
"graphql": "^14.5.8",
"graphql-upload": "8.1.0"
}
}