-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 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
59
60
{
"name": "orange-back",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "18"
},
"scripts": {
"build": "tsup --out-dir build --config tsup.config.ts",
"dev": "tsx watch src/server.ts",
"test": "vitest run --dir src/use-cases",
"test:create-prisma-environment": "pnpm link ./prisma/vitest-environment-prisma",
"test:install-prisma-environment": "pnpm link vitest-environment-prisma",
"test:watch": "vitest --dir src/use-cases",
"pretest:e2e": "run-s test:create-prisma-environment test:install-prisma-environment",
"test:e2e": "vitest run --dir src/controller",
"test:e2e:coverage": "vitest run --dir src/controller --coverage",
"test:e2e:watch": "vitest --dir src/controller",
"test:coverage": "vitest run --coverage",
"debug": "ts-node-dev --respawn --transpile-only src/server.ts --debug"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@rocketseat/eslint-config": "^2.1.0",
"@types/node": "^20.11.6",
"@types/pump": "^1.1.3",
"@types/supertest": "^6.0.2",
"@vitest/coverage-v8": "^1.2.1",
"eslint": "8.52.0",
"npm-run-all": "^4.1.5",
"prisma": "5.8.1",
"supertest": "^6.3.4",
"ts-node-dev": "^2.0.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vitest": "^1.2.1"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.502.0",
"@fastify/cors": "^9.0.0",
"@fastify/jwt": "^8.0.0",
"@fastify/multipart": "^8.1.0",
"@fastify/static": "^6.12.0",
"@prisma/client": "5.8.1",
"@types/bcryptjs": "^2.4.6",
"@types/express": "^4.17.21",
"bcryptjs": "^2.4.3",
"dotenv": "^16.4.1",
"fastify": "^4.25.2",
"pg": "^8.11.3",
"pg-hstore": "^2.3.4",
"pump": "^3.0.0",
"tsup": "^8.0.1",
"vite-tsconfig-paths": "^4.3.1",
"zod": "^3.22.4"
}
}