-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 973 Bytes
/
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
{
"type": "module",
"license": "MIT",
"scripts": {
"typecheck": "tsc --noEmit",
"dev": "vite --port 443 --host 0.0.0.0",
"build": "vite build && bash build.sh",
"preview": "yarn build && yarn host",
"lint": "eslint ./src/main.ts",
"host": "node server.js",
"format": "prettier-eslint \"src/**/*.ts\" --write"
},
"dependencies": {
"@replit/database": "^2.0.1",
"@swc/core": "^1.2.160",
"better-replit-db": "^1.1.9",
"co-body": "^6.1.0",
"cookie-parser": "^1.4.6",
"express": "^4.17.3",
"howler": "^2.2.3",
"node-fetch": "^3.2.3",
"p5": "^1.4.1",
"vite": "^2.8.6"
},
"devDependencies": {
"@types/howler": "^2.2.7",
"@types/p5": "^1.4.1",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"eslint": "^8.11.0",
"prettier-eslint": "^16.3.0",
"prettier-eslint-cli": "^8.0.1",
"sass": "^1.49.9",
"typescript": "^4.6.2"
}
}