-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.83 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
{
"name": "@codespark/server",
"version": "1.0.0",
"description": "Entra21 course final paper",
"main": "./dist/infra/server.js",
"scripts": {
"start:dev": "tsx --watch ./src/infra/server.ts",
"start:prod": "node ./dist/infra/server.js",
"build": "tsup ./src",
"docker:init": "docker compose up -d",
"docker:start": "docker compose start",
"docker:stop": "docker compose stop",
"docker:down": "docker compose down",
"prisma:init": "prisma migrate deploy && prisma generate",
"test:unit": "vitest run",
"test:unit:watch": "vitest",
"test:e2e": "vitest run --config ./vitest.config.e2e.mts",
"test:e2e:watch": "vitest --config ./vitest.config.e2e.mts",
"test:cov": "vitest run --coverage",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix"
},
"keywords": [],
"author": "Artur Poffo",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.515.0",
"@fastify/cookie": "^9.3.1",
"@fastify/cors": "^9.0.1",
"@fastify/jwt": "^8.0.0",
"@prisma/client": "^5.10.2",
"bcryptjs": "^2.4.3",
"buffer-to-stream": "^1.0.0",
"dotenv": "^16.3.1",
"fastify": "^4.25.2",
"fastify-multer": "^2.0.3",
"get-video-duration": "^4.1.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@faker-js/faker": "^8.3.1",
"@types/bcryptjs": "^2.4.6",
"@types/buffer-to-stream": "^1.0.3",
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"prisma": "^5.10.2",
"supertest": "^6.3.4",
"tsup": "^8.0.1",
"tsx": "^4.7.0",
"typescript": "*",
"vite-tsconfig-paths": "^4.3.1",
"vitest": "^1.2.1"
}
}