-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.46 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
{
"name": "sprite-pixi-js",
"version": "1.0.0-beta",
"main": "src/index.js",
"license": "MIT",
"engines": {
"node": "^18.18.0",
"npm": "^10.8.2"
},
"type": "module",
"dependencies": {
"@pixi-essentials/bounds": "^3.0.0",
"@pixi/layers": "^2.1.0",
"@pixi/math": "^7.3.1",
"@pixi/math-extras": "^7.3.1",
"@pixi/particle-emitter": "^5.0.8",
"@pixi/ui": "^1.0.0",
"pixi.js": "^7.3.1"
},
"scripts": {
"dev": "webpack-dev-server --config .config/webpack.config.dev.js",
"build": "webpack --config .config/webpack.config.prod.js",
"preview": "http-server ./dist/ -p 4000",
"debug": "webpack-dev-server --config .config/webpack.config.dev.js --env debug=true",
"lint": "eslint ."
},
"devDependencies": {
"@babel/core": "^7.22.10",
"@babel/preset-env": "^7.22.10",
"@types/uuid": "^9.0.3",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"eslint": "^8.0.0",
"html-webpack-plugin": "^5.5.3",
"http-server": "^14.1.1",
"json-loader": "^0.5.7",
"json-minimizer-webpack-plugin": "^4.0.0",
"style-loader": "^3.3.3",
"ts-loader": "^9.4.4",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "^5.4.5",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.9.0"
}
}