-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
40 lines (40 loc) · 1.24 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
{
"name": "naturally-bizarre",
"version": "1.0.0",
"description": "Experiments made by Luis Henrique Bizarro based on the series The Nature of Code by Daniel Shiffman.",
"author": "Luis Henrique Bizarro",
"license": "MIT",
"homepage": "https://github.com/lhbzr/naturally-bizarre",
"scripts": {
"dev": "cross-env NODE_ENV=dev webpack-dev-server --progress --config webpack.dev.js",
"build": "webpack -p --progress --config webpack.build.js"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"clean-webpack-plugin": "^0.1.19",
"cname-webpack-plugin": "^1.0.1",
"copy-webpack-plugin": "^4.5.1",
"cross-env": "^5.1.4",
"css-loader": "^0.28.11",
"file-loader": "^1.1.11",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.9.0",
"raw-loader": "^0.5.1",
"sass-loader": "^7.0.1",
"stats.js": "^0.17.0",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "^1.2.5",
"url-loader": "^1.0.1",
"webpack": "^4.6.0",
"webpack-cli": "^2.0.15",
"webpack-dev-server": "^3.1.3",
"webpack-merge": "^4.1.2"
},
"dependencies": {
"ejs-loader": "^0.3.1"
}
}