-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.57 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
52
53
54
55
56
{
"name": "diploma",
"version": "1.0.0",
"description": "diploma proect - intranet",
"main": "index.js",
"scripts": {
"build": "webpack",
"build:dev": "webpack --config webpack.dev.config.js",
"deploy:dynamic": "git push heroku master",
"deploy:static": "surge -p ./public -d diploma.surge.sh",
"deploy": "npm-run-all deploy:*",
"dev": "webpack --config webpack.dev.config.js && npm run start:dev",
"start": "node --harmony app.js",
"start:dev": "node --harmony app.js --NODE_ENV=development",
"test": "mocha --harmony --recursive tests/ --STATUS=testing"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lakate/diploma.git"
},
"author": "Lakate",
"license": "ISC",
"bugs": {
"url": "https://github.com/Lakate/diploma/issues"
},
"homepage": "https://github.com/Lakate/diploma#readme",
"dependencies": {
"bluebird": "^3.5.0",
"body-parser": "^1.17.2",
"express": "^4.15.3",
"express-favicon": "^2.0.0",
"handlebars-layouts": "^3.1.4",
"hbs": "^4.0.1",
"minimist": "^1.2.0",
"morgan": "^1.8.2"
},
"devDependencies": {
"autoprefixer": "^7.1.1",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"css-loader": "^0.28.3",
"cssnano": "^3.10.0",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"jscs": "^3.0.7",
"path": "^0.12.7",
"postcss-loader": "^2.0.5",
"style-loader": "^0.18.1",
"surge": "^0.19.0",
"webpack": "^2.6.1"
},
"engines": {
"node": "4.4.0"
}
}