-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.13 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
{
"name": "@nexus/app",
"version": "0.1.0",
"type": "module",
"scripts": {
"start": "node src/index.js",
"migrate": "node src/db/migrate.js",
"dev": "concurrently -n api,web -c cyan,magenta \"node --watch src/index.js\" \"npm run dev --prefix client\"",
"build:client": "npm install --prefix client && npm run build --prefix client",
"test": "vitest run",
"test:client": "npm test --prefix client"
},
"dependencies": {
"@fastify/cookie": "^11.1.2",
"@fastify/cors": "^10.0.2",
"@fastify/helmet": "^13.1.0",
"@fastify/jwt": "^9.1.0",
"@fastify/multipart": "^9.0.3",
"@fastify/rate-limit": "^10.2.2",
"@fastify/static": "^8.1.1",
"@fastify/swagger": "^9.5.0",
"@fastify/swagger-ui": "^5.2.2",
"axios": "^1.9.0",
"bcrypt": "^5.1.1",
"blurhash": "^2.0.5",
"chokidar": "^4.0.3",
"fast-xml-parser": "^5.2.3",
"fastify": "^5.3.3",
"jpeg-js": "^0.4.4",
"p-queue": "^8.1.0",
"pg": "^8.13.3",
"pino": "^9.14.0 || ^10.1.0",
"pino-roll": "^1.0.0",
"pngjs": "^7.0.0"
},
"devDependencies": {
"concurrently": "^9.1.2",
"vitest": "^4.1.10"
}
}