-
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.45 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.45 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": "root",
"private": true,
"description": "A collection of phony services or mocks",
"license": "MIT",
"author": {
"name": "Gregor Adams",
"email": "greg@pixelass.com",
"url": "https://pixelass.com"
},
"workspaces": [
"examples/*",
"packages/*",
"web/*"
],
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build --stream",
"clean:package-json": "npx sort-package-json package.json 'packages/*/package.json'",
"cli:help": "lerna exec 'yarn phony --help' --scope @examples/cli --stream",
"deploy": "rm -rf node_modules/gh-pages/.cache && lerna run docs:build --stream && gh-pages -d 'web/docs/public'",
"develop": "yarn lerna run docs:develop --stream",
"examples:apollo": "lerna run dev --scope @examples/apollo --stream",
"examples:cli": "lerna run start --scope @examples/cli --stream",
"examples:graphql": "lerna run start --scope @examples/graphql --stream",
"ncu": "npx npm-check-updates -u; yarn lerna exec 'npx npm-check-updates -u'",
"ocd": "npx sort-package-json; lerna exec 'npx sort-package-json'",
"prepublish": "yarn build",
"prerelease": "yarn build",
"pretest": "yarn build",
"release": "lerna publish --conventional-commits",
"test": "lerna run test --stream",
"test:watch": "lerna run test:watch --parallel",
"test:dev": "concurrently 'yarn watch' 'yarn test:watch'",
"toc": "npx markdown-toc -i README.md; lerna exec 'npx markdown-toc -i README.md'",
"prewatch": "yarn build",
"watch": "lerna run watch --parallel"
},
"devDependencies": {
"@ava/typescript": "^1.1.1",
"@babel/core": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"@babel/preset-typescript": "^7.8.3",
"@babel/register": "^7.8.6",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-json": "^4.0.2",
"@types/node": "^13.7.7",
"ava": "^3.5.0",
"babel-plugin-istanbul": "^6.0.0",
"babel-plugin-transform-inline-environment-variables": "^0.4.3",
"codecov": "^3.6.5",
"gh-pages": "^2.2.0",
"lerna": "^3.20.2",
"nyc": "^14.1.1",
"prettier": "^1.19.1",
"rimraf": "^3.0.2",
"rollup": "^1.32.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-resolve2": "^1.0.0",
"rollup-plugin-typescript2": "^0.26.0",
"ts-node": "^8.6.2",
"tslib": "^1.11.1",
"typescript": "^3.8.3"
}
}