-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.35 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.35 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
{
"name": "nib",
"version": "0.1.0",
"description": "nib — powered by Excalidraw. Drawing platform with galleries, auth, and validation.",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"dev:server": "tsx watch server/main.ts",
"dev:client": "vite",
"build": "vite build && tsc -p tsconfig.server.json",
"start": "node dist/server/main.js",
"migrate": "tsx server/migrate.ts",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@excalidraw/excalidraw": "^0.18.0",
"@excalidraw/utils": "^0.1.3-test32",
"@nestjs/common": "^11.1.13",
"@nestjs/core": "^11.1.13",
"@nestjs/platform-express": "^11.1.13",
"@nestjs/sequelize": "^11.0.1",
"@nestjs/serve-static": "^5.0.4",
"@nestjs/testing": "^11.1.13",
"@resvg/resvg-js": "^2.6.2",
"@tailwindcss/vite": "^4.1.18",
"@woff2/woff2-rs": "^1.0.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"compression": "^1.8.1",
"connect-pg-simple": "^10.0.0",
"dompurify": "^3.3.3",
"express-session": "^1.18.0",
"jsdom": "^28.0.0",
"lucide-react": "^0.564.0",
"openid-client": "^6.1.0",
"pg": "^8.18.0",
"pg-hstore": "^2.3.4",
"prom-client": "^15.1.3",
"radix-ui": "^1.4.3",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"react-router-dom": "^6.28.0",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.2",
"sequelize": "^6.37.7",
"sequelize-typescript": "^2.1.6",
"sharp": "^0.34.5",
"svgdom": "^0.1.23",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.18"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/compression": "^1.8.1",
"@types/connect-pg-simple": "^7.0.3",
"@types/express": "^5.0.6",
"@types/express-session": "^1.18.0",
"@types/multer": "^2.0.0",
"@types/node": "^22.0.0",
"@types/pg": "^8.16.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@types/supertest": "^6.0.3",
"@vitejs/plugin-react": "^4.3.0",
"concurrently": "^9.1.0",
"sqlite3": "^5.1.7",
"supertest": "^7.2.2",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"vite": "^5.4.0",
"vitest": "^4.0.18"
}
}