-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.05 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
{
"name": "multidraw",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev:backend": "cd server && nodemon ./server.ts",
"build:backend": "",
"lint:backend": "eslint server",
"dev:frontend": "npx vite serve ./client",
"build:frontend": "npx vite build ./client --base=./",
"lint:frontend": "eslint client",
"lint": "npm-run-all lint:frontend lint:backend",
"dev": "npm-run-all -p dev:frontend dev:backend",
"prod-build": "npm-run-all build:frontend build:backend"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/websocket": "^1.0.10",
"express": "^4.18.2",
"typescript": "^5.3.3",
"websocket": "^1.0.34"
},
"devDependencies": {
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"cypress": "^13.6.2",
"eslint": "^8.56.0",
"nodemon": "^3.0.2",
"npm-run-all": "^4.1.5",
"pixelmatch": "^5.3.0",
"pngjs": "^7.0.0",
"ts-node": "^10.9.2",
"vite": "^5.0.10"
}
}