forked from yaempioy/dockerize-node-hello-world
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 820 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 820 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
{
"name": "docker_web_app",
"version": "1.0.0",
"description": "Node.js on Docker",
"main": "server.js",
"scripts": {
"start": "node server.js",
"test": "npm run mocha",
"mocha": "./node_modules/.bin/mocha --compilers js:babel-register --require babel-polyfill"
},
"author": "kornkittig@gmail.com",
"license": "ISC",
"dependencies": {
"express": "^4.14.1"
},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-eslint": "^7.1.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-syntax-async-functions": "^6.5.0",
"babel-plugin-transform-async-to-generator": "^6.5.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.3.13",
"babel-register": "^6.3.13",
"mocha": "^3.5.3",
"should": "^13.0.1",
"supertest": "^3.0.0"
}
}