-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 939 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 939 Bytes
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
{
"name": "zoom-it-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "6.3.0",
"npm": "^3.10.3"
},
"scripts": {
"start:dev": "babel-node app.js --presets es2015,stage-2,stage-3",
"start:prod": "node dist/app.js",
"build": "babel ./src -d dist --presets es2015,stage-2,stage-3 -D",
"dev": "nodemon ./src/app.js --exec babel-node --presets es2015,stage-2,stage-3",
"postinstall": "npm run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"graphql": "^0.6.0",
"koa": "^2.0.0",
"koa-convert": "^1.2.0",
"koa-graphql": "^0.5.4",
"koa-router": "^7.0.1",
"koa-static": "^2.0.0"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-polyfill": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-2": "^6.5.0",
"babel-preset-stage-3": "^6.5.0",
"nodemon": "^1.9.2"
}
}