forked from kriasoft/graphql-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
123 lines (123 loc) · 3.31 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "root",
"version": "0.0.0",
"private": true,
"type": "module",
"packageManager": "[email protected]",
"workspaces": [
"api",
"app",
"db",
"edge",
"img",
"scripts"
],
"scripts": {
"postinstall": "node ./scripts/postinstall.js",
"start": "yarn workspaces foreach -ip -j unlimited run start",
"build": "yarn workspaces foreach -p -j unlimited run build",
"setup": "node ./scripts/setup.js",
"lint": "eslint --cache --report-unused-disable-directives .",
"test": "jest",
"tf": "node --no-warnings ./scripts/tf.js",
"g:lint": "yarn lint \"$INIT_CWD\"",
"g:test": "yarn test \"$INIT_CWD\"",
"psql": "yarn db:psql",
"repl": "yarn db:repl"
},
"dependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.0",
"@babel/node": "^7.20.7",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-transform-runtime": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.0",
"@babel/register": "^7.21.0",
"@emotion/babel-plugin": "^11.10.6",
"@emotion/eslint-plugin": "^11.10.0",
"@emotion/react": "^11.10.6",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"babel-jest": "^29.5.0",
"babel-plugin-import": "^1.13.6",
"babel-plugin-relay": "^14.1.0",
"babel-plugin-replace-import-extension": "^1.1.3",
"envars": "^0.4.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.7.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"graphql-config": "^4.5.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"minimist": "^1.2.8",
"prettier": "^2.8.4",
"react": "^18.2.0",
"relay-config": "^12.0.1",
"typescript": "^4.9.5",
"wrangler": "^2.12.1",
"zx": "^7.2.0"
},
"devDependencies": {
"@jest/types": "^29.5.0",
"@types/babel__core": "^7.20.0",
"@types/cross-spawn": "^6.0.2",
"@types/inquirer": "^9.0.3",
"@types/jest": "^29.4.0",
"@types/minimist": "^1.2.2",
"@types/node": "^18.14.6"
},
"resolutions": {
"chalk@npm:^5.2.0": "^4.1.2",
"ora@npm:^6.1.2": "^5.4.1"
},
"envars": {
"cwd": "./env"
},
"graphql": {
"projects": {
"api": {
"schema": "api/schema.graphql",
"documents": "api/**/*.ts",
"extensions": {
"endpoints": {
"default": "http://localhost:8080/api"
}
}
},
"web": {
"schema": [
"api/schema.graphql",
"api/schema.relay.graphql",
"web/schema.graphql"
],
"documents": "web/**/*.{ts,tsx}",
"extensions": {
"endpoints": {
"default": "http://localhost:5173/api"
}
}
}
}
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": false,
"quoteProps": "as-needed",
"jsxSingleQuote": false,
"trailingComma": "all",
"bracketSpacing": true,
"bracketSameLine": false,
"arrowParens": "always",
"endOfLine": "lf"
}
}