-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.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
{
"name": "react-declarative-apis-example",
"version": "0.0.1",
"main": "server/server.js",
"scripts": {
"lint": "eslint .",
"client": "cd client && npm start",
"start": "concurrently \"node server/server.js\" \"npm run client\"",
"start:watch-server": "concurrently \"npm run server-watch\" \"npm run client\"",
"server-watch": "nodemon --watch server --watch common server/server.js",
"posttest": "npm run lint && nsp check"
},
"dependencies": {
"compression": "^1.0.3",
"cors": "^2.5.2",
"express-graphql": "^0.6.3",
"graphql": "^0.9.1",
"helmet": "^1.3.0",
"loopback": "^3.0.0",
"loopback-boot": "^2.6.5",
"loopback-component-explorer": "^4.0.0",
"serve-favicon": "^2.0.1",
"strong-error-handler": "^1.0.1"
},
"devDependencies": {
"babel-eslint": "6.1.2",
"concurrently": "^3.1.0",
"eslint": "3.5.0",
"eslint-config-loopback": "^8.0.0",
"eslint-config-react-app": "0.2.1",
"eslint-plugin-flowtype": "2.18.1",
"eslint-plugin-import": "1.12.0",
"eslint-plugin-jsx-a11y": "2.2.2",
"eslint-plugin-react": "6.3.0",
"nsp": "^2.1.0"
},
"repository": {
"type": "",
"url": ""
},
"license": "ISC",
"description": "react-declarative-apis",
"author": "Willy <willygdouglas@gmail.com>",
"engines": {
"node": ">=7"
}
}