-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.02 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": "kodesmell-api",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:kodesmell/kodesmell-api.git",
"author": "JaeKwon Han <[email protected]>",
"license": "MIT",
"scripts": {
"build": "npm install && babel src/ -d lib/",
"build:watch": "babel src/ --watch d lib/",
"dev": "nodemon --watch lib lib/server.js",
"start": "NODE_ENV=production node lib/server.js"
},
"dependencies": {
"apollo-server-express": "^1.1.0",
"bcrypt": "^1.0.2",
"bluebird": "^3.5.0",
"body-parser": "^1.17.2",
"cors": "^2.8.4",
"express": "^4.15.4",
"graphql": "^0.10.5",
"graphql-request": "^1.3.4",
"graphql-tools": "^1.1.0",
"mongoose": "^4.11.6",
"morgan": "^1.8.2",
"request": "^2.81.0",
"request-promise": "^4.2.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-module-resolver": "^2.7.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0"
}
}