-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.77 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
{
"name": "quiplash-clone",
"version": "1.0.0",
"description": "A customizable Quiplash-like game server",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"dev": "concurrently \"ts-node-dev --respawn --transpile-only src/index.ts\" \"next dev\"",
"build": "tsc && next build",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint . --ext .ts,.tsx",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"test:coverage": "jest --coverage",
"test:manual": "node test/manual/socketTest.js"
},
"dependencies": {
"@radix-ui/react-progress": "^1.1.1",
"@radix-ui/react-slot": "^1.1.1",
"@types/react": "^18.2.52",
"@types/react-dom": "^18.2.18",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"framer-motion": "^11.0.3",
"lucide-react": "^0.330.0",
"next": "14.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"socket.io": "^4.7.2",
"socket.io-client": "^4.7.4",
"tailwind-merge": "^2.6.0",
"tailwindcss": "3.4.1",
"tailwindcss-animate": "^1.0.7",
"uuid": "^9.0.1"
},
"devDependencies": {
"@shadcn/ui": "^0.0.4",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.12",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"autoprefixer": "^10.4.17",
"concurrently": "^8.2.2",
"eslint": "^8.56.0",
"eslint-config-next": "14.1.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.7.0",
"postcss": "^8.4.33",
"prettier": "^3.1.1",
"ts-jest": "^29.2.5",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
}
}