-
Notifications
You must be signed in to change notification settings - Fork 115
/
package.json
54 lines (54 loc) · 1.6 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
50
51
52
53
54
{
"name": "pikachu-volleyball",
"version": "1.0.10",
"description": "Pikachu Volleyball implemented into JavaScript by reverse engineering the original game",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack serve --config webpack.dev.js",
"build": "webpack --config webpack.prod.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gorisanson/pikachu-volleyball.git"
},
"keywords": [
"game"
],
"author": "Kyutae Lee",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/gorisanson/pikachu-volleyball/issues"
},
"homepage": "https://github.com/gorisanson/pikachu-volleyball#readme",
"devDependencies": {
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.17.0",
"eslint-plugin-prettier": "^4.0.0",
"html-webpack-plugin": "^5.5.0",
"prettier": "^2.6.2",
"webpack": "^5.76.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.1",
"webpack-merge": "^5.8.0",
"workbox-webpack-plugin": "^6.5.3"
},
"dependencies": {
"@pixi/canvas-display": "^6.4.2",
"@pixi/canvas-prepare": "^6.4.2",
"@pixi/canvas-renderer": "^6.4.2",
"@pixi/canvas-sprite": "^6.4.2",
"@pixi/constants": "^6.4.2",
"@pixi/core": "^6.4.2",
"@pixi/display": "^6.4.2",
"@pixi/loaders": "^6.4.2",
"@pixi/prepare": "^6.4.2",
"@pixi/settings": "^6.4.2",
"@pixi/sound": "^4.2.1",
"@pixi/sprite": "^6.4.2",
"@pixi/sprite-animated": "^6.4.2",
"@pixi/spritesheet": "^6.4.2",
"@pixi/ticker": "^6.4.2"
}
}