-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 848 Bytes
/
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
{
"name": "starmen",
"version": "1.0.0",
"main": "index.js",
"author": "Dmytro Ilhanaiev <ilhanaiev.dmytro@email.cz>",
"license": "MIT",
"scripts": {
"dev": "yarn rimraf ./dist && webpack --env development",
"watch": "yarn rimraf ./dist && webpack --env development --watch",
"prod": "yarn rimraf ./dist && webpack --env production",
"serv": "webpack-dev-server --env production"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"css-loader": "^0.28.4",
"cssnano": "^3.10.0",
"extract-text-webpack-plugin": "^2.1.2",
"html-webpack-plugin": "^2.28.0",
"jquery": "^3.2.1",
"postcss-loader": "^2.0.6",
"rimraf": "^2.6.1",
"style-loader": "^0.18.2",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.4.5"
}
}