-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.56 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
{
"name": "condulence-webapp",
"version": "1.0.0",
"description": "A Webpack 4 scaffold with ES6, babel and SASS for development and production usage",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server -d --progress --color --open --config webpack.config.js",
"build": "webpack -p --progress --mode production --config webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jankern/condulence-webapp.git"
},
"author": "Jan Kern",
"license": "ISC",
"bugs": {
"url": "https://github.com/jankern/condulence-webapp/issues"
},
"homepage": "https://github.com/jankern/condulence-webapp#readme",
"dependencies": {
"jquery": "^3.4.1",
"masonry-layout": "^4.2.2",
"material-design-icons": "^3.0.1",
"materialize-css": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/preset-env": "^7.7.1",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^2.0.2",
"copy-webpack-plugin": "^5.0.5",
"css-loader": "^2.1.1",
"file-loader": "^3.0.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.13.1",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-loader": "^3.0.0",
"sass-loader": "^7.3.1",
"style-loader": "^0.23.1",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0",
"webpack-merge": "^4.2.2"
},
"keywords": [
"webpack4",
"babel",
"es6",
"sass"
]
}