-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.84 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.84 KB
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
52
53
54
55
56
57
58
{
"name": "node-template",
"version": "1.0.0",
"description": "nodejs,express,hbs",
"main": "app.js",
"scripts": {
"dev": "./node_modules/.bin/nodemon -e js,hbs -i public/ app.js",
"pro": "NODE_ENV=\"production\" node app.js",
"static-server": "./node_modules/.bin/webpack-dev-server --config=public/webpack.config.js --context=public -w --inline --hot --colors",
"static": "./node_modules/.bin/webpack --config=public/webpack.config.js --context=public",
"build": "git pull && ./node_modules/.bin/webpack --config=public/webpack.config.js --context=public && pm2 reload clinks"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lyule/node-template.git"
},
"author": "lyule",
"license": "ISC",
"bugs": {
"url": "https://github.com/Lyule/node-template/issues"
},
"homepage": "https://github.com/Lyule/node-template#readme",
"dependencies": {
"body-parser": "^1.17.1",
"compression": "^1.6.2",
"cookie-parser": "^1.4.3",
"express": "^4.15.2",
"express-hbs": "^1.0.4",
"handlebars": "^4.0.6",
"lodash": "^4.17.4",
"querystring": "^0.2.0",
"request": "^2.81.0",
"request-promise": "^4.2.0",
"serve": "^5.1.4",
"serve-favicon": "^2.4.2",
"url-join": "^2.0.1",
"winston": "^2.3.1",
"winston-daily-rotate-file": "^1.4.6"
},
"devDependencies": {
"autoprefixer": "^6.7.7",
"chalk": "^1.1.3",
"css-loader": "^0.28.0",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"handlebars": "^4.0.10",
"handlebars-loader": "^1.5.0",
"node-sass": "^4.5.2",
"nodemon": "^1.11.0",
"optimize-css-assets-webpack-plugin": "^1.3.1",
"postcss-loader": "^1.3.3",
"sass-loader": "^6.0.3",
"shelljs": "^0.7.7",
"style-loader": "^0.16.1",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.2"
}
}