-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.39 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
86
87
88
89
90
91
92
93
94
95
96
{
"name": "hi.shaoruu.io",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "npm-run-all -p dev:*",
"dev:client": "vite",
"dev:core": "cd core && cross-env RUST_BACKTRACE=full cargo watch -w src -w ../voxelize/server -x \"run --release\"",
"dev:server": "cross-env NODE_ENV=development nodemon",
"start": "npm-run-all -p start:*",
"start:core": "pm2 start ecosystem.config.js --only core-app --attach",
"server": "cross-env NODE_ENV=production ts-node --project tsconfig.server.json -r tsconfig-paths/register server/index.ts",
"kill": "lsof -ti:4000 | xargs kill -9 && pm2 kill",
"kill-bots": "yarn run-script scripts/removeAllBots.ts",
"kill-boids": "yarn run-script scripts/removeAllBoids.ts",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"docker:build": "docker build -t shaoruu.io .",
"docker:run": "docker run -p 4000:4000 -d shaoruu.io",
"docker:stop": "docker stop $(docker ps -a -q --filter ancestor=shaoruu.io --format=\"{{.ID}}\")",
"run-script": "yarn ts-node --project tsconfig.server.json -r tsconfig-paths/register",
"preview": "vite preview",
"preinstall": "npx only-allow pnpm"
},
"dependencies": {
"@fal-ai/serverless-client": "^0.10.0",
"@voxelize/aabb": "^1.0.0",
"@voxelize/core": "^0.1.223",
"@voxelize/physics-engine": "^1.1.29",
"@voxelize/protocol": "^1.0.33",
"@voxelize/transport": "^1.0.33",
"axios": "^1.5.0",
"classnames": "^2.3.2",
"dat.gui": "^0.7.9",
"node-fetch": "2",
"noisejs": "^2.1.0",
"postprocessing": "^6.35.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-loading": "^2.0.3",
"three": "^0.165.0",
"three-nebula": "^10.0.3",
"vite-plugin-image-optimizer": "^1.1.7"
},
"devDependencies": {
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/typography": "^0.5.10",
"@types/cors": "^2.8.14",
"@types/dat.gui": "^0.7.12",
"@types/express": "^4.17.18",
"@types/node-cron": "^3.0.9",
"@types/noisejs": "^0.0.31",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@types/three": "^0.165.0",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.0.0",
"@vitejs/plugin-react": "^4.0.3",
"autoprefixer": "^10.4.16",
"chokidar": "^3.5.3",
"concurrently": "^8.2.1",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv-defaults": "^5.0.2",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-no-relative-import-paths": "^1.5.2",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"express": "^4.18.2",
"mongodb": "^6.1.0",
"mongoose": "^7.5.2",
"node-cron": "^3.0.2",
"nodemon": "^3.0.1",
"npm-run-all": "^4.1.5",
"openai": "^4.28.4",
"passport": "^0.6.0",
"passport-google-oauth20": "^2.0.0",
"passport-jwt": "^4.0.1",
"pm2": "^5.3.1",
"postcss": "^8.4.30",
"sass": "^1.68.0",
"tailwindcss": "^3.3.3",
"ts-assert-unreachable": "^0.0.9",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.0.2",
"uuid": "^9.0.1",
"vite": "^4.4.5",
"zod": "^3.22.2"
}
}