-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.8 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
{
"name": "marshmallow-watch",
"version": "1.0.0",
"description": "Explore exclusive trailers, create personalized lists, and more with Marshmallow Watch. Transform your entertainment discovery experience today!",
"main": "index.js",
"scripts": {
"dev": "tsx watch src/infra/server.ts",
"build": "tsup src --out-dir build",
"start": "node ./build/infra/server.js",
"test": "vitest run --dir ./src/domain/",
"test:watch": "vitest --dir ./src/domain/",
"test:ui": "vitest --ui",
"test:e2e": "vitest run --config ./vitest.config.e2e.ts",
"test:e2e:watch": "vitest --config ./vitest.config.e2e.ts",
"lint": "biome check",
"lint:fix": "biome check --write"
},
"engines": {
"node": "18.x"
},
"keywords": [],
"author": "Raiane Oliveira",
"license": "ISC",
"devDependencies": {
"@biomejs/biome": "1.9.2",
"@faker-js/faker": "8.4.1",
"@swc/core": "1.6.13",
"@types/bcryptjs": "2.4.6",
"@types/node": "^20.14.11",
"@types/nodemailer": "6.4.15",
"@types/supertest": "6.0.2",
"@vitest/ui": "2.0.4",
"drizzle-kit": "0.24.2",
"globals": "15.8.0",
"sucrase": "3.35.0",
"supertest": "7.0.0",
"ts-node": "10.9.2",
"tsconfig-paths": "4.2.0",
"tsup": "8.1.1",
"typescript": "^5.5.3",
"vitest": "2.0.4",
"vitest-tsconfig-paths": "3.4.1"
},
"dependencies": {
"@aws-sdk/client-s3": "3.637.0",
"@fastify/cookie": "9.4.0",
"@fastify/cors": "8.0.0",
"@fastify/jwt": "8.0.1",
"@fastify/multipart": "8.3.0",
"@paralleldrive/cuid2": "2.2.2",
"bcryptjs": "2.4.3",
"dayjs": "1.11.13",
"dotenv": "16.4.5",
"drizzle-orm": "0.33.0",
"fastify": "^4.28.1",
"fastify-plugin": "4.5.1",
"nodemailer": "6.9.14",
"postgres": "3.4.4",
"tsx": "^4.16.2",
"zod": "3.23.8"
}
}