-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.28 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
{
"name": "graph_ql",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"engines": {
"node": ">=8.9",
"npm": ">=3.10.0"
},
"engineStrict": true,
"scripts": {
"start": "npm run build && node dist/index.js",
"dev": "nodemon src/index.js --exec \"node -r dotenv/config -r babel-register\"",
"build": "rimraf dist/ && babel ./src --out-dir dist/ --ignore ./node_modules,./.babelrc,./package.json,./npm-debug.log --copy-files",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "Ashok Dey <[email protected]> (http://ashokdey.in)",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.6.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"eslint": "^6.5.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"nodemon": "^1.19.3",
"rimraf": "^3.0.0"
},
"dependencies": {
"apollo-server-express": "^2.14.2",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"express-validator": "^5.3.1",
"graphql": "^14.5.8",
"graphql-tools": "^4.0.5",
"humps": "^2.0.1",
"log4js": "^5.1.0",
"mysql2": "^1.7.0"
}
}