-
Notifications
You must be signed in to change notification settings - Fork 123
/
package.json
38 lines (38 loc) · 1.28 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
{
"name": "data-pixels-playground",
"productName": "Data Pixels Playground",
"version": "1.1.0",
"description": "Create pixel art programmatically",
"author": "Geoffrey Mattie",
"license": "MIT",
"main": "index.js",
"scripts": {
"dev": "webpack --config ./config/webpack.config.js --mode development --watch",
"prod": "webpack --config ./config/webpack.config.js --mode production",
"dev-prod": "webpack --config ./config/webpack.config.js --mode production --watch"
},
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"babel-loader": "^8.1.0",
"browser-sync": "^2.26.10",
"browser-sync-webpack-plugin": "^2.2.2",
"css-loader": "^1.0.0",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.4.3",
"node-sass": "^4.14.1",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"sass-loader": "^7.3.1",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
},
"browserslist": [
"> 1%",
"last 2 versions",
"maintained node versions",
"not dead"
]
}