-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
49 lines (49 loc) · 1.12 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
{
"name": "express-example-es6",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"gulp": "node ./node_modules/gulp/bin/gulp.js",
"daemon": "node ./var/build/server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "mamemomonga",
"license": "MIT",
"babel": {
"presets": [
[
"babel-preset-env",
{
"targets": {
"node": "8.0"
}
}
]
]
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"fancy-log": "^1.3.2",
"gulp": "gulpjs/gulp#4.0",
"gulp-htmlmin": "^4.0.0",
"gulp-live-server": "^0.0.31",
"gulp-sass": "^4.0.1",
"uglifyjs-webpack-plugin": "^1.2.7",
"webpack-stream": "^5.0.0"
},
"dependencies": {
"body-parser": "^1.18.3",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"express": "^4.16.3",
"handlebars": "^4.0.11",
"querystring": "^0.2.0",
"request": "^2.87.0"
}
}