-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.68 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
55
56
57
58
59
{
"name": "prototype",
"version": "1.0.0",
"description": "boilerplate for prototyping games",
"browserslist": "> 0.25%, not dead",
"scripts": {
"build": "npm run type-check && npm run webpack -- --env mode=production",
"start": "npm-run-all --parallel type-check:watch dev",
"dev": "npm run webpack-dev-server -- --env mode=development",
"webpack-dev-server": "webpack-dev-server"
},
"author": "shahiem seymor",
"license": "MIT",
"dependencies": {
"@peasy-lib/peasy-ui": "^0.9.46",
"@pixi/constants": "^6.5.5",
"clean-webpack-plugin": "^4.0.0",
"file-loader": "^6.2.0",
"gsap": "^3.11.4",
"json-loader": "^0.5.7",
"marked": "^10.0.0",
"pixi-tween": "^0.2.0",
"pixi.js": "^7.3.3",
"raw-loader": "^4.0.2",
"sass": "^1.55.0",
"sass-loader": "^13.0.2"
},
"devDependencies": {
"@types/node": "^18.6.3",
"@types/offscreencanvas": "^2019.7.0",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"browserslist": "^4.21.3",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^4.0.0",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-webpack-plugin": "^3.2.0",
"html-webpack-plugin": "^5.5.0",
"jsdom": "^20.0.0",
"mini-css-extract-plugin": "^2.6.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"rimraf": "^3.0.2",
"swc-loader": "^0.2.3",
"terser-webpack-plugin": "^5.3.3",
"ts-jest": "^28.0.7",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3",
"webpack-merge": "^5.8.0"
}
}