-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.86 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "pixi-minesweeper",
"version": "0.0.4",
"scripts": {
"start": "npm run serve-modern",
"test": "npx --no-install jest",
"test-watch": "npm run test -- --watch",
"serve": "npx --no-install webpack-dev-server",
"serve-modern": "npm run serve -- --env modern",
"serve-prod": "npm run serve -- --env prod",
"build-dev": "npx --no-install webpack",
"build": "npm run build-dev -- --env prod",
"lint": "npx --no-install eslint .",
"lint:fix": "npx --no-install eslint . --fix",
"prettier": "npx --no-install prettier src/**/*.ts",
"prettier:fix": "npx --no-install prettier src/**/*.ts --write"
},
"prettier": {
"printWidth": 120,
"endOfLine": "auto",
"useTabs": true
},
"dependencies": {
"@esotericsoftware/spine-pixi-v8": "^4.2.95",
"@types/createjs": "0.0.32",
"@types/lodash-es": "^4.17.12",
"core-js": "^3.47.0",
"keycode": "^2.2.1",
"lodash-es": "^4.17.21",
"pixi.js": "^8.14.3",
"reset-css": "^5.0.2",
"screenfull": "^5.0.2",
"tone": "^15.1.22",
"tslib": "^2.8.1",
"tweenjs": "^1.0.2"
},
"devDependencies": {
"@tonejs/midi": "^2.0.28",
"@types/dat.gui": "^0.7.13",
"@types/jest": "^30.0.0",
"copy-webpack-plugin": "^13.0.1",
"css-loader": "7.1.2",
"dat.gui": "^0.7.9",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"html-webpack-plugin": "^5.6.5",
"imports-loader": "^5.0.0",
"jest": "^30.2.0",
"prettier": "^3.7.4",
"style-loader": "4.0.0",
"ts-jest": "^29.4.6",
"ts-loader": "^9.5.4",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.1",
"webpack": "^5.103.0",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2"
},
"repository": {
"type": "git",
"url": "https://github.com/lloydevans/pixi-minesweeper.git"
},
"bugs": {
"url": "https://github.com/lloydevans/pixi-minesweeper/issues"
},
"homepage": "https://github.com/lloydevans/pixi-minesweeper#readme"
}