-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 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
60
61
62
63
{
"name": "tagether",
"version": "3.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "vitest run --exclude docker",
"lint": "eslint src --fix",
"fmt": "prettier --write src/",
"check": "eslint src ; prettier --check src",
"dev": "next dev -p 3009",
"build": "next build",
"start": "next start -p 3009"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@hello-pangea/dnd": "^16.5.0",
"@radix-ui/react-select": "^2.0.0",
"@react-oauth/google": "^0.12.1",
"@svgr/webpack": "^8.1.0",
"@types/node": "^20.10.5",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@types/uuid": "^9.0.7",
"axios": "^1.6.2",
"drizzle-orm": "^0.29.1",
"framer-motion": "^10.16.16",
"iron-session": "^8.0.1",
"jwt-decode": "^4.0.0",
"mysql2": "^3.6.5",
"next": "^14.0.4",
"next-pwa": "^5.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-draggable": "^4.4.6",
"react-textarea-autosize": "^8.5.3",
"sass": "^1.69.5",
"swr": "^2.2.4",
"typescript": "^5.3.3",
"use-immer": "^0.9.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@next/eslint-plugin-next": "^14.0.4",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.14.0",
"eslint": "^8.56.0",
"eslint-config-google": "^0.14.0",
"eslint-config-next": "^14.0.4",
"eslint-plugin-drizzle": "^0.2.2",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^3.0.0",
"prettier": "^3.1.1",
"vite": "^5.0.10",
"vite-tsconfig-paths": "^4.2.2",
"vitest": "^1.1.0"
}
}