-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.42 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
{
"name": "portfolio",
"version": "1.0.0",
"main": "app.js",
"author": "Dmytro Ilhanaiev",
"license": "MIT",
"scripts": {
"start": "node app.js",
"dev": "webpack --env development",
"prod": "rimraf ./dist && webpack --env production",
"serv": "webpack-dev-server --env development",
"deploy": "git push heroku master && heroku ps:scale web=1 && heroku open",
"fast": "yarn prod && git add . && git commit -a -m 'autocommit' && yarn deploy"
},
"devDependencies": {
"babel-loader": "^7.1.1",
"copy": "^0.3.0",
"css-loader": "^0.28.4",
"cssnano": "^3.10.0",
"extract-text-webpack-plugin": "^2.1.2",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^2.28.0",
"imagemin-webpack-plugin": "^1.4.4",
"img-loader": "^2.0.0",
"nodemon": "^1.11.0",
"postcss-loader": "^2.0.6",
"pug-loader": "^2.3.0",
"rimraf": "^2.6.1",
"style-loader": "^0.18.2",
"uglifyjs-webpack-plugin": "^0.4.6",
"webpack": "^3.0.0",
"webpack-dev-server": "^2.5.0",
"webpack-merge": "^4.1.0"
},
"dependencies": {
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"express": "^4.15.4",
"jquery": "^3.2.1",
"pug": "^2.0.0-rc.3"
},
"repository": {
"type": "git",
"url": "https://ilhanaiev.herokuapp.com/"
},
"keywords": [
"Ilhanaiev",
"Dmytro Ilhanaiev",
"Ilhanaiev portfolio"
]
}