-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.77 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "7drl-2022",
"version": "1.0.0",
"description": "My entry for 7DRL 2022",
"author": {
"name": "Devin Spikowski",
"url": "https://github.com/vegeta897"
},
"scripts": {
"webpack": "webpack",
"webpack-dev-server": "webpack-dev-server",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- -w",
"prebuild": "npm run clean",
"clean": "npx rimraf dist/*",
"build": "npm run type-check && npm run webpack -- --env mode=production",
"start": "npm run dev",
"dev": "npm run webpack-dev-server -- --env mode=development",
"test": "echo \"Error: no test specified\" && exit 1",
"prettier": "npx prettier",
"prettier:format": "npm run prettier -- --write src/**/*.ts",
"prettier:check": "npm run prettier -- -c ./src/**/*.ts",
"lint-check": "npx eslint ./src/**/*.ts",
"code-style-check": "npm run lint-check && npm run prettier:check",
"serve": "npx sirv-cli dist --port 8081",
"publish": "butler push dist/app.zip vegeta897/hook-line-and-spelunker:html5",
"status": "butler status vegeta897/hook-line-and-spelunker:html5"
},
"dependencies": {
"@gamestdio/easing": "^1.0.0",
"bitecs": "^0.3.36",
"core-js": "^3.21.1",
"pixi-viewport": "^4.34.4",
"pixi.js": "^6.2.2",
"regenerator-runtime": "^0.13.9",
"rot-js": "^2.2.0"
},
"devDependencies": {
"@swc/core": "^1.2.146",
"@types/node": "^17.0.21",
"@types/offscreencanvas": "^2019.6.4",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"browserslist": "^4.19.3",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.6.0",
"css-minimizer-webpack-plugin": "^3.4.1",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-webpack-plugin": "^3.1.1",
"html-webpack-plugin": "^5.5.0",
"identity-obj-proxy": "^3.0.0",
"image-minimizer-webpack-plugin": "^3.2.3",
"imagemin": "^8.0.1",
"imagemin-optipng": "^8.0.0",
"jsdom": "^19.0.0",
"mini-css-extract-plugin": "^2.5.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.3",
"rimraf": "^3.0.2",
"sirv-cli": "^2.0.2",
"swc-loader": "^0.1.15",
"terser-webpack-plugin": "^5.3.1",
"ts-loader": "^9.2.7",
"ts-node": "^10.6.0",
"typescript": "^4.6.2",
"webpack": "^5.69.1",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4",
"webpack-merge": "^5.8.0",
"zip-webpack-plugin": "^4.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vegeta897/7drl-2022.git"
},
"keywords": [
"roguelike"
],
"license": "MIT",
"homepage": "https://github.com/vegeta897/7drl-2022#readme"
}