-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
83 lines (83 loc) · 2.25 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
{
"name": "witchazzan",
"short_name": "Witchazzan",
"version": "0.0.1",
"description": "Witchazzan Game",
"type": "module",
"source": [
"client/index.html",
"client/sign-in.html"
],
"targets": {
"default": {
"distDir": "./stage"
}
},
"scripts": {
"client": "rm -rf .parcel-cache;parcel --port 3001 --open",
"client-no-browser": "rm -rf .parcel-cache;parcel --port 3001",
"prebuild": "rm -rf stage;rm -rf .parcel-cache",
"build": "parcel build && rm -rf web-dist && mv stage web-dist",
"server": "pm2-dev scripts/pm2DevConfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chrisl8/Witchazzan.git"
},
"author": "Christen Lofland <[email protected]> (https://www.ekpyroticfrood.net)",
"license": "AGPL-3.0-or-later",
"licenseUrl": "https://opensource.org/licenses/AGPL-3.0",
"bugs": {
"url": "https://github.com/chrisl8/Witchazzan/issues"
},
"homepage": "https://witchazzan.space/",
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.11.1",
"@parcel/packager-raw-url": "^2.12.0",
"@parcel/packager-xml": "^2.12.0",
"@parcel/transformer-webmanifest": "^2.12.0",
"@parcel/transformer-xml": "^2.12.0",
"@playwright/test": "^1.47.2",
"assert": "^2.1.0",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"eslint": "^9.11.1",
"events": "^3.3.0",
"globals": "^15.10.0",
"parcel": "^2.12.0",
"path-browserify": "^1.0.1",
"pm2": "^5.4.2",
"process": "^0.11.10",
"querystring-es3": "^0.2.1",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"url": "^0.11.4",
"util": "^0.12.5"
},
"browserslist": [
"> 0.5%",
"last 2 versions",
"not dead"
],
"dependencies": {
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"easystarjs": "^0.4.4",
"express": "^4.21.0",
"fflate": "^0.8.2",
"json5": "^2.2.3",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"nipplejs": "^0.10.2",
"phaser": "^3.85.2",
"phaser-raycaster": "^0.10.10",
"prettier": "^3.3.3",
"socket.io": "^4.8.0",
"socket.io-client": "^4.8.0",
"socket.io-msgpack-parser": "^3.0.2",
"sqlite3": "^5.1.7",
"uuid": "^10.0.0"
}
}