-
-
Notifications
You must be signed in to change notification settings - Fork 129
/
package.json
65 lines (65 loc) · 2.33 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
56
57
58
59
60
61
62
63
64
65
{
"private": true,
"scripts": {
"check": "yarn clean && yarn lint && yarn prepack:all && yarn test",
"lint": "yarn eslint .",
"lint:fix": "yarn prettier:fix && yarn run eslint --fix .",
"flow": "flow",
"flow:check": "flow check",
"pretest": "./scripts/pretest",
"test": "lerna run --concurrency 1 test",
"posttest": "true",
"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",
"-----": "-----",
"eslint": "eslint --ext .js,.jsx,.ts,.tsx",
"prettier": "prettier --ignore-path ./.eslintignore",
"prettier:all": "yarn prettier '**/*.{json,md,html,js,jsx,ts,tsx}'",
"prettier:fix": "yarn prettier:all --write",
"prettier:check": "yarn prettier:all --list-different"
},
"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": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"@typescript-eslint/typescript-estree": "^4.1.0",
"babel-eslint": "^10.0.1",
"babel-jest": "25.x",
"concurrently": "^5.3.0",
"conventional-changelog-cli": "^2.0.27",
"eslint": "^7.8.1",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-graphql": "^4.0.0",
"eslint-plugin-jest": "^24.0.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-tsdoc": "^0.2.0",
"eslint_d": "^9.1.2",
"flow-bin": "^0.106.3",
"flow-copy-source": "^2.0.9",
"graphql": ">=0.6 <16",
"jest": "25.x",
"lerna": "^3.18.4",
"pg": ">=6.1.0 <9",
"postgraphile": "^4.10.0-alpha.0",
"prettier": "^2.1.1",
"typescript": "^4.0.2"
},
"workspaces": ["packages/*"],
"engines": {
"node": ">=8.6",
"yarn": ">=1.3.2"
},
"resolutions": {
"graphql": "^15.4.0"
}
}