-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 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
41
42
43
44
{
"name": "triangles",
"private": true,
"version": "2.0.0",
"type": "module",
"scripts": {
"dev": "concurrently \"vite --host 0.0.0.0\" \"PORT=3001 tsx watch server/index.ts\"",
"build": "vite build",
"server": "tsx server/index.ts",
"prettier": "prettier -w client/{index.html,src/**/*.{ts,tsx}} server/**/*.ts common/**/*.ts e2e/**/*.ts",
"typecheck": "tsc --noEmit --incremental",
"typecheck:watch": "yarn typecheck --watch"
},
"dependencies": {
"@12joan/preact-hint": "^0.4.0",
"@socket.io/redis-adapter": "^7.2.0",
"express": "^4.21.2",
"preact": "^10.25.4",
"prop-types": "^15.8.1",
"react-a11y-dialog": "^6.2.0",
"redis": "^4.7.0",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"tailwind-merge": "^2.6.0"
},
"devDependencies": {
"@babel/core": "7",
"@playwright/test": "^1.49.1",
"@preact/preset-vite": "^2.9.4",
"@types/express": "^4.17.21",
"@types/node": "^20.14.12",
"autoprefixer": "^10.4.20",
"concurrently": "^7.6.0",
"postcss": "^8.4.49",
"postcss-aspect-ratio-polyfill": "^2.0.0",
"prettier": "2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"sass": "^1.83.1",
"tailwindcss": "^3.4.17",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vite": "^5.4.11"
}
}