-
-
Notifications
You must be signed in to change notification settings - Fork 570
/
package.json
95 lines (95 loc) · 3.71 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"private": true,
"scripts": {
"check": "yarn clean && yarn lint && yarn prepack:all && yarn test",
"lint:fix": "yarn run eslint --fix . && yarn prettier:fix",
"pretest": "tsc -b && ./scripts/pretest && yarn workspaces foreach --topological run pretest",
"test": "NODE_ENV=test yarn workspaces foreach --topological run test",
"posttest": "NODE_ENV=test yarn workspaces foreach --topological run posttest && node scripts/benjies-depcheck.mjs",
"prepack:all": "scripts/prepack-all",
"build": "tsc -b && yarn && yarn workspace ruru prepack",
"watch": "yarn build && tsc -b --watch",
"clean": "( jest --clearCache || true ) && rm -Rf {utils,grafast,graphile-build,postgraphile}/*/{dist,bundle,tsconfig.tsbuildinfo,tsconfig.*.tsbuildinfo}",
"changeset:version": "yarn changeset version && node scripts/postversion.mjs",
"typedoc:gen": "yarn typedoc .",
"w": "yarn workspace",
"postgraphile": "cd postgraphile/postgraphile && node dist/cli-run.js",
"website:grafast": "cd grafast/website && yarn start",
"website:postgraphile": "cd postgraphile/website && yarn start",
"website:build": "cd graphile-build/website && yarn start",
"website:star": "cd utils/website && yarn start",
"websites:deploy": "./publish-websites.sh",
"-----": "-----",
"eslint": "node --max-old-space-size=8192 node_modules/.bin/eslint --ext .js,.jsx,.ts,.tsx",
"prettier": "prettier --cache --ignore-path ./.eslintignore",
"prettier:all": "yarn prettier '**/*.{json,md,mdx,html,js,jsx,ts,tsx,yml}'",
"prettier:fix": "yarn prettier:all --write",
"prettier:check": "yarn prettier:all --list-different"
},
"devDependencies": {
"@babel/cli": "^7.25.6",
"@babel/core": "^7.25.2",
"@babel/eslint-parser": "^7.25.1",
"@babel/plugin-syntax-object-rest-spread": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.24.8",
"@babel/plugin-transform-runtime": "^7.25.4",
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@knodes/typedoc-plugin-monorepo-readmes": "^0.23.1",
"@knodes/typedoc-plugin-pages": "^0.23.4",
"@localrepo/prettier2-for-jest": "npm:prettier@^2",
"@tsconfig/node16": "^16.1.1",
"@types/jest": "^29.5.4",
"@types/mock-fs": "4.13.1",
"@types/node": "^20.5.7",
"@types/rimraf": "^4.0.5",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"@typescript-eslint/typescript-estree": "^6.5.0",
"babel-jest": "^29.7.0",
"babel-plugin-transform-import-meta": "^2.2.1",
"concurrently": "^8.2.1",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-graphql": "^4.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-tsdoc": "^0.2.17",
"eslint_d": "^12.2.1",
"glob": "^10.3.4",
"graphql": "16.1.0-experimental-stream-defer.6",
"jest": "^29.6.4",
"mock-fs": "^5.2.0",
"pg": "^8.11.3",
"prettier": "^3.0.3",
"rimraf": "^5.0.1",
"typedoc": "^0.25.0",
"typedoc-monorepo-link-types": "^0.0.4",
"typescript": "^5.2.2",
"webpack": "^5.94.0",
"zx": "^7.2.3"
},
"workspaces": [
"grafast/*",
"graphile-build/*",
"postgraphile/*",
"utils/*"
],
"engines": {
"node": ">=14.17",
"yarn": ">=1.3.2"
},
"packageManager": "yarn@4.0.0-rc.33",
"resolutions": {
"graphql": "16.1.0-experimental-stream-defer.6"
},
"dependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2"
}
}