forked from graphile/graphile-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.49 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
{
"private": true,
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-syntax-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-modules-commonjs": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-flow": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.4.2",
"concurrently": "^4.1.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-flowtype": "^3.7.0",
"eslint-plugin-graphql": "^3.0.3",
"eslint-plugin-jest": "^22.5.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint_d": "^7.3.0",
"flow-bin": "^0.66.0",
"flow-copy-source": "^1.2.0",
"graphql": ">=0.9 <0.14 || ^14.0.2",
"jest": "^24.8.0",
"lerna": "^3.13.4",
"pg": "^7.10.0",
"postgraphile": "^4.4.0",
"prettier": "^1.17.0"
},
"scripts": {
"check": "yarn clean && yarn lint && yarn prepack:all && yarn test",
"lint": "eslint packages && lerna run tslint",
"flow": "flow",
"flow:check": "flow check",
"test": "lerna run --concurrency 1 test",
"prepack:all": "scripts/prepack-all",
"watch": "for I in packages/*/; do echo \"cd $I && npm run watch\" | perl -p -e 's/\\n/\\0/;'; done | xargs -0 node_modules/.bin/concurrently --kill-others",
"clean": "rm -Rf packages/*/node8plus/"
},
"workspaces": ["packages/*"],
"engines": {
"node": ">=8.6",
"yarn": ">=1.3.2"
}
}