-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
52 lines (52 loc) · 1.38 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
{
"name": "tanks",
"version": "2.0.0",
"description": "It's gonna ruin friendships",
"scripts": {
"build-client-static": "cd client && vite build",
"build-client": "cd client && npx vite build --watch",
"local-server": "npx ts-node-dev server",
"server": "ts-node server",
"start": "npm run server",
"dev": "npm run local-server",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@auth0/auth0-spa-js": "^2.0.3",
"@thream/socketio-jwt": "^2.1.1",
"auth0": "^3.2.0",
"autoprefixer": "^10.4.13",
"axios": "^0.25.0",
"cors": "^2.8.5",
"dotenv": "^15.0.0",
"express": "^4.17.2",
"express-oauth2-jwt-bearer": "^1.1.0",
"honeycomb-grid": "^4.0.1",
"jwks-rsa": "^2.0.5",
"micromodal": "^0.4.10",
"node-cron": "^3.0.0",
"p5": "^1.5.0",
"pg": "^8.7.1",
"postcss": "^8.4.21",
"socket.io": "^4.4.1",
"socket.io-client": "^4.6.0",
"tailwindcss": "^3.2.6",
"ts-node": "^10.9.1",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.5",
"vite": "^4.1.1",
"vite-plugin-static-copy": "^0.13.0"
},
"devDependencies": {
"@types/auth0": "^2.35.9",
"@types/express": "^4.17.13",
"@types/micromodal": "^0.3.3",
"@types/node": "^18.15.11",
"@types/node-cron": "^3.0.1",
"@types/p5": "^1.5.0",
"husky": "^8.0.3"
}
}