forked from graphile/graphile-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.94 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
51
52
53
54
55
{
"private": true,
"scripts": {
"check": "yarn clean && yarn lint && yarn prepack:all && yarn test",
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"lint:fix": "yarn run lint --fix && prettier --write '**/*.{json,md,html}'",
"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/",
"changelog": "(cat scripts/CHANGELOG_HEADER.md; npx conventional-changelog -p angular --release-count 0) > CHANGELOG.md",
"version": "yarn run changelog && git add CHANGELOG.md"
},
"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",
"@typescript-eslint/eslint-plugin": "^2.3.0",
"@typescript-eslint/parser": "^2.3.0",
"@typescript-eslint/typescript-estree": "^2.3.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.9.0",
"concurrently": "^4.1.0",
"conventional-changelog-cli": "^2.0.27",
"eslint": "^6.4.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-flowtype": "^4.3.0",
"eslint-plugin-graphql": "^3.0.3",
"eslint-plugin-jest": "^22.5.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint_d": "^8.0.0",
"flow-bin": "^0.106.3",
"flow-copy-source": "^1.2.0",
"graphql": ">=0.9 <0.14 || ^14.0.2",
"jest": "^24.8.0",
"lerna": "^3.18.4",
"pg": "^7.10.0",
"postgraphile": "^4.4.4",
"prettier": "^1.18.2",
"typescript": "^3.6.3"
},
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=8.6",
"yarn": ">=1.3.2"
}
}