-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 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
{
"name": "dots-indeed",
"version": "2.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --config webpack.dev.js --mode development",
"build": "webpack --config webpack.prod.js --mode production",
"preview": "npm run build && http-server dist"
},
"repository": {
"type": "git",
"url": ""
},
"keywords": [],
"author": "K.C. Dameron",
"license": "ISC",
"bugs": {
"url": ""
},
"homepage": "",
"dependencies": {
"normalize.css": "^8.0.0"
},
"devDependencies": {
"ajv": "^6.3.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.7.0",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^3.5.3",
"cssnano": "^4.1.10",
"favicons-webpack-plugin": "^3.0.1",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^4.2.0",
"http-server": "^0.12.3",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.14.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"sass-loader": "^6.0.7",
"source-map-loader": "^0.2.3",
"style-loader": "^0.20.3",
"url-loader": "^1.0.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.1.1",
"webpack-dev-server": "^3.1.14"
}
}