-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.27 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.27 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "private-board",
"version": "0.0.1",
"private": true,
"packageManager": "pnpm@8.15.5",
"scripts": {
"dev": "nx run-many -t dev,serve",
"build": "nx run-many -t build",
"test": "nx run-many -t test",
"lint": "nx run-many -t lint"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"@nx/devkit": "22.5.2",
"@nx/esbuild": "22.5.2",
"@nx/eslint": "22.5.2",
"@nx/eslint-plugin": "22.5.2",
"@nx/jest": "22.5.2",
"@nx/js": "22.5.2",
"@nx/next": "22.5.2",
"@nx/node": "22.5.2",
"@nx/playwright": "22.5.2",
"@playwright/test": "^1.36.0",
"@swc-node/register": "~1.11.1",
"@swc/cli": "~0.8.0",
"@swc/core": "~1.15.5",
"@swc/helpers": "~0.5.18",
"@tailwindcss/postcss": "^4.2.1",
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^30.0.0",
"@types/multer": "^2.0.0",
"@types/node": "20.19.9",
"@types/pg": "^8.11.11",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"esbuild": "^0.19.2",
"eslint": "^9.8.0",
"eslint-config-prettier": "^10.0.0",
"jest": "^30.0.2",
"jest-environment-jsdom": "^30.2.0",
"jest-environment-node": "^30.0.2",
"jest-util": "^30.0.2",
"jsonc-eslint-parser": "^2.1.0",
"nx": "^22.0.0",
"prettier": "~3.6.2",
"tailwindcss": "^4.2.1",
"ts-jest": "^29.4.0",
"ts-node": "10.9.1",
"tslib": "^2.3.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.40.0"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.999.0",
"@next/third-parties": "^16.1.6",
"@prisma/adapter-pg": "^7.4.1",
"@prisma/client": "^7.4.1",
"@private-board/shared": "workspace:^",
"@tailwindcss/typography": "^0.5.19",
"@tiptap/extension-image": "^3.20.0",
"@tiptap/extension-placeholder": "^3.20.0",
"@tiptap/extension-text-style": "^3.20.0",
"@tiptap/pm": "^3.20.0",
"@tiptap/react": "^3.20.0",
"@tiptap/starter-kit": "^3.20.0",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dompurify": "^3.3.1",
"express": "^4.21.2",
"express-rate-limit": "^8.2.1",
"idb": "^8.0.3",
"multer": "^2.0.2",
"nanoid": "^5.1.5",
"next": "~16.0.1",
"pg": "^8.13.3",
"react": "^19.0.0",
"react-dom": "^19.0.0"
}
}