forked from heroku/node-js-getting-started
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.15 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
45
46
47
48
49
50
51
{
"name": "node-js-getting-started",
"version": "0.1.5",
"description": "A sample Node.js app using Express 4",
"main": "index.js",
"scripts": {
"start": "node dist/app.js"
},
"dependencies": {
"async": "^1.5.2",
"babel-preset-es2015": "^6.6.0",
"body-parser": "^1.15.0",
"ejs": "2.3.3",
"express": "4.13.3",
"redis": "^2.5.3",
"request": "^2.71.0",
"socket.io": "^1.4.5",
"xml2json": "^0.9.0"
},
"engines": {
"node": "0.12.7"
},
"repository": {
"type": "git",
"url": "https://github.com/heroku/node-js-getting-started"
},
"keywords": [
"node",
"heroku",
"express"
],
"license": "MIT",
"devDependencies": {
"babel-core": "^6.7.6",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-runtime": "^6.6.1",
"eslint": "^2.8.0",
"eslint-loader": "^1.3.0",
"gulp": "^3.9.1",
"gulp-env": "^0.4.0",
"gulp-express": "^0.3.5",
"gulp-foreman": "^1.0.0",
"gulp-nodemon": "^2.0.6",
"gulp-webpack": "^1.5.0",
"nodemon": "^1.9.1",
"webpack": "^1.13.0",
"webpack-node-externals": "^1.1.0",
"xml2json": "^0.9.0"
}
}