-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.12 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
{
"name": "words-game",
"version": "1.2.0",
"author": "mdgfox",
"license": "MIT",
"repository": "mdgfox/words-game",
"scripts": {
"lint": "eslint . --ext .ts",
"start": "webpack --config webpack/webpack.config.dev.js --watch",
"build:dev": "webpack --config webpack/webpack.config.dev.js",
"build:prod": "webpack --config webpack/webpack.config.prod.js"
},
"dependencies": {
"@pixi/ui": "0.10.5",
"axios": "1.7.7",
"buffer": "6.0.3",
"eventemitter3": "5.0.1",
"pixi.js": "8.4.0",
"reflect-metadata": "0.2.2",
"tsyringe": "4.8.0",
"uuid": "10.0.0"
},
"devDependencies": {
"@types/pixi.js": "5.0.0",
"@types/uuid": "10.0.0",
"@typescript-eslint/eslint-plugin": "6.13.2",
"@typescript-eslint/parser": "6.13.2",
"copy-webpack-plugin": "11.0.0",
"eslint": "8.55.0",
"html-webpack-plugin": "5.5.3",
"send": ">=0.19.0",
"terser-webpack-plugin": "5.3.9",
"ts-loader": "9.5.1",
"tsconfig-paths-webpack-plugin": "4.1.0",
"typescript": "5.3.2",
"webpack": "5.95.0",
"webpack-cli": "5.1.4",
"webpack-dev-server": "4.15.1"
}
}