-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 2.1 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "webpack-frontend",
"version": "1.0.0",
"description": "Webpack Static Frontend Boilerplate",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/21joint/webpack-frontend.git"
},
"keywords": [
"webpack",
"frontend",
"static",
"html",
"scss",
"css",
"boilerplate",
"21",
"joint"
],
"author": "Levon Grigoryan",
"license": "ISC",
"bugs": {
"url": "https://github.com/21joint/webpack-frontend/issues"
},
"homepage": "https://github.com/21joint/webpack-frontend#readme",
"scripts": {
"dev": "cross-env NODE_ENV=dev webpack-dev-server --progress --mode development --config webpack.config.dev.js",
"build": "webpack -p --progress --mode production --config webpack.config.build.js",
"push": "git add -u && git commit -m'autopushed' && git push"
},
"dependencies": {
"bootstrap": "^4.0.0",
"bootstrap-sass": "^3.3.7",
"jquery": "^3.3.1"
},
"devDependencies": {
"@meltwater/fetch-favicon": "^1.0.4",
"babel": "^6.23.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.1",
"cross-env": "^5.1.4",
"css-loader": "^0.28.11",
"cssnano": "^3.10.0",
"extract-loader": "^2.0.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.11",
"glob": "^7.1.2",
"html-loader": "^0.5.5",
"html-webpack-inline-svg-plugin": "^1.2.4",
"html-webpack-plugin": "^3.1.0",
"imports-loader": "^0.8.0",
"node-sass": "^4.8.3",
"postcss-loader": "^2.1.3",
"purify-css": "^1.2.5",
"purifycss-webpack": "^0.7.0",
"resolve-url-loader": "^2.3.0",
"sass-loader": "^7.0.1",
"style-ext-html-webpack-plugin": "^3.4.7",
"style-loader": "^0.21.0",
"url-loader": "^1.0.1",
"webpack": "^4.4.1",
"webpack-cli": "^3.0.0",
"webpack-dashboard": "^1.1.1",
"webpack-dev-server": "^3.1.1",
"webpack-merge": "^4.1.2",
"webpack-node-externals": "^1.7.2"
}
}