forked from Urigo/graphql-modules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.13 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
{
"private": true,
"repository": "https://github.com/Urigo/graphql-modules.git",
"author": "dotansimha <[email protected]>",
"license": "MIT",
"workspaces": {
"packages": [
"packages/*",
"examples/*"
]
},
"scripts": {
"test": "lerna run test",
"build": "lerna run build",
"build:api-docs": "./generate-api-docs.sh",
"lint": "lerna run lint",
"clean": "lerna clean --yes && rm -rf node_modules",
"release": "lerna publish --exact --force-publish=\"*\"",
"release:canary": "lerna publish --force-publish=\"*\" --canary --exact",
"ci:release:canary": "lerna publish --force-publish=\"*\" --canary --exact --yes",
"deploy-website": "yarn build:api-docs && cd website && yarn && yarn build"
},
"devDependencies": {
"reflect-metadata": "0.1.12",
"@types/graphql": "14.0.3",
"@types/jest": "23.3.9",
"graphql": "14.0.2",
"jest": "23.6.0",
"lerna": "2.11.0",
"rimraf": "2.6.2",
"ts-jest": "23.10.4",
"typedoc": "0.13.0",
"typedoc-plugin-docusaurus": "1.0.14",
"replace-in-file": "3.4.2"
},
"publishConfig": {
"access": "public"
}
}