-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.01 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
{
"name": "grapql-test",
"version": "1.0.0",
"description": "test app with graphql",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -rf dist",
"dev": "npm run clean && mkdir dist && ./node_modules/.bin/babel server -d dist && node dist/app.js"
},
"author": "Alexander Charkov",
"license": "ISC",
"dependencies": {
"express": "^4.15.4",
"express-graphql": "^0.6.11",
"graphql": "^0.11.3",
"join-monster": "^2.0.14",
"lodash": "^4.17.4",
"pg": "^7.3.0",
"pg-format": "^1.0.4"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-preset-env": "^1.6.0",
"eslint": "^4.8.0",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-config-google": "^0.9.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1"
}
}