-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.29 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": "whirled2",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "concurrently --kill-other --kill-signal SIGKILL -n dev: npm:dev-*",
"dev-client": "vite serve ./game/client --host",
"dev-server": "nodemon -e go,json,gohtml,sql --exec go run . serve --signal SIGKILL",
"dev-watch": "npx tailwindcss -i ./tailwind.css -o ./web/static/styles.css --watch",
"build-css": "npx tailwindcss -i ./tailwind.css -o ./game/client/dist/styles.css",
"build-client": "vite build ./game/client && npm run build-css",
"build-server": "go build .",
"pretty": "prettier --write ."
},
"devDependencies": {
"@types/three": "^0.160.0",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"concurrently": "^8.2.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"nodemon": "^3.0.1",
"prettier": "^3.2.2",
"prettier-plugin-go-template": "^0.0.15",
"tailwindcss": "^3.3.3",
"typescript": "^5.2.2",
"vite": "^5.0.8"
},
"dependencies": {
"@esotericsoftware/spine-threejs": "^4.2.35",
"@geckos.io/client": "^3.0.0",
"@tailwindcss/container-queries": "^0.1.1",
"bitecs": "^0.3.40",
"imgui-js": "github:Schiznitz/imgui-js",
"jsx-dom": "^8.1.2",
"three": "^0.141.0"
}
}