-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
47 lines (47 loc) · 1.32 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
{
"name": "pixi-slot-machine",
"version": "1.0.0",
"private": true,
"description": "Pixi Slot Machine is a bare minimum slot machine game to get familiar with Pixi.js.",
"keywords": [
"pixi.js",
"pixi",
"slot-machine",
"game",
"typescript",
"javascript"
],
"author": "Weyoss <[email protected]>",
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --mode development --hot --progress --color --port 3000 --open",
"prebuild": "npm run build:clean",
"build:clean": "rimraf ./build && mkdir build",
"build": "webpack -p --progress --colors"
},
"devDependencies": {
"@babel/core": "7.11.6",
"@types/node": "13.13.16",
"@types/webpack": "4.41.22",
"@types/webpack-env": "1.15.2",
"babel-loader": "8.1.0",
"clean-webpack-plugin": "3.0.0",
"css-loader": "3.6.0",
"file-loader": "6.1.0",
"html-loader": "1.3.0",
"html-webpack-plugin": "4.4.1",
"mini-css-extract-plugin": "0.9.0",
"pixi.js": "5.3.3",
"prettier": "2.1.1",
"rimraf": "3.0.2",
"style-loader": "1.2.1",
"ts-loader": "6.2.2",
"typescript": "3.9.7",
"url-loader": "4.1.0",
"webpack": "4.44.1",
"webpack-cli": "3.3.12",
"webpack-dev-server": "3.11.0"
}
}