-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
30 lines (30 loc) · 882 Bytes
/
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
{
"name": "tetris",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "webpack-dev-server --port=3000 --mode=development",
"build": "webpack --config webpack.config.js --env=production",
"build-dev": "webpack --config webpack.config.js",
"zip": "cd dist && zip dist.zip * -r && mv dist.zip ..",
"dist": "rm dist -rf && yarn run build && yarn run zip",
"levels": "node levels.js"
},
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/preset-env": "^7.5.4",
"babel-loader": "^8.0.6",
"css-loader": "^3.0.0",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.8.0",
"style-loader": "^0.23.1",
"webpack": "^4.35.3",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2"
},
"dependencies": {
"copy-webpack-plugin": "^6.0.3",
"poolf": "^1.0.6"
}
}