-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1010 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 1010 Bytes
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
{
"name": "slots-game",
"version": "1.0.0",
"description": "A simple slots game using PixiJS",
"main": "dist/index.js",
"scripts": {
"build": "webpack --mode production",
"start": "webpack serve --mode development",
"lint": "eslint src --ext .ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"howler": "^2.2.4",
"pixi-spine": "^4.0.4",
"pixi.js": "^7.3.2"
},
"devDependencies": {
"@types/howler": "^2.2.12",
"@types/jest": "^30.0.0",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.56.0",
"html-webpack-plugin": "^5.5.3",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"ts-jest": "^29.4.5",
"ts-loader": "^9.5.1",
"typescript": "^5.5.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"private": true
}