forked from graphile/examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 874 Bytes
/
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
{
"scripts": {
"db:reset": "psql -X1v ON_ERROR_STOP=1 graphiledemo -f ./db/reset.sql",
"lint": "eslint .",
"client:react": "cd client-react; npm start",
"server:koa2": "cd server-koa2; npm start",
"server:postgraphile": ". ./.env; postgraphile",
"start": "concurrently --kill-others 'npm run server:koa2' 'npm run client:react'"
},
"private": true,
"workspaces": {
"packages": [
"*"
],
"nohoist": [
"**/react-scripts",
"**/react-scripts/**"
]
},
"devDependencies": {
"babel-eslint": "9.0.0",
"concurrently": "3.6.0",
"eslint": "5.6.0",
"eslint-config-prettier": "2.9.0",
"eslint-plugin-graphql": "2.1.1",
"eslint-plugin-prettier": "2.6.1",
"eslint-plugin-react": "7.10.0",
"eslint_d": "5.3.1",
"prettier": "1.13.6"
},
"engines": {
"node": ">=8.11.3 <11"
}
}