forked from idindrakusuma/devcamp-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.03 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
{
"name": "gql-devcamp",
"version": "1.0.0",
"main": "src/index.js",
"author": "ihsansatriawan",
"license": "MIT",
"scripts": {
"build": "babel src --ignore __tests__,__mocks__ -d dist",
"start": "NODE_ENV=dev nodemon src/index.js --exec babel-node",
"production": "npm run build && NODE_ENV=production node dist/index.js"
},
"engines": {
"node": ">=10.14.1",
"npm": ">=6.4.1",
"yarn": ">=1.12.3"
},
"dependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.3.1",
"@babel/runtime": "^7.5.5",
"body-parser": "^1.18.3",
"concurrently": "^4.1.0",
"config": "^3.0.1",
"cors": "^2.8.5",
"express": "^4.16.4",
"express-graphql": "^0.7.1",
"graphql": "^14.1.1",
"graphql-server-express": "^1.4.0",
"graphql-tools": "^4.0.4",
"merge-graphql-schemas": "^1.5.8",
"mongoose": "^5.4.12"
},
"devDependencies": {
"@babel/node": "^7.2.2",
"nodemon": "^1.18.10"
}
}