-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.5 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.5 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
79
{
"name": "lgpd-checklist-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"extensionless": {
"lookFor": [
"js",
"mjs",
"cjs"
]
},
"_moduleAliases": {
"@/domain": "./src/domain",
"@/delivery": "./src/delivery",
"@/infrastructure": "./src/infrastructure",
"@/internal": "./src/infrastructure/internal"
},
"scripts": {
"test:create-prisma-environment": "npm link ./prisma/vitest-environment-prisma",
"test:install-prisma-environment": "npm link vitest-environment-prisma",
"test": "vitest run --dir src/domain",
"test:watch": "vitest --dir src/domain",
"pretest:e2e": "run-s test:create-prisma-environment test:install-prisma-environment",
"test:e2e": "set NODE_ENV=test&& vitest run --dir src/delivery ",
"test:e2e:watch": "set NODE_ENV=test&& vitest --dir src/delivery",
"test:arch": "vitest run --dir test/architecture",
"test:arch:watch": "vitest --dir test/architecture",
"test:coverage": "vitest --coverage",
"test:ui": "vitest --ui",
"test:all": "run-s test test:e2e test:arch",
"dev": "ts-node-dev src/main.ts",
"start": "node --import=extensionless/register dist/src/main.js",
"start:migrate": "npx prisma migrate deploy && npm run start",
"build": "npm run prisma:generate && tsc && tsc-alias",
"prisma:format": "npx prisma format",
"prisma:migrate": "npx prisma migrate dev",
"prisma:generate": "npx prisma generate",
"prisma:studio": "npx prisma studio"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@rocketseat/eslint-config": "^2.2.2",
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"@types/morgan": "^1.9.9",
"@types/node": "^20.11.30",
"@types/supertest": "^6.0.2",
"@vitest/coverage-v8": "^2.1.9",
"@vitest/ui": "^2.1.9",
"eslint": "^8.57.0",
"npm-run-all": "^4.1.5",
"prisma": "^5.11.0",
"prisma-dbml-generator": "^0.12.0",
"supertest": "^7.0.0",
"ts-node-dev": "^2.0.0",
"tsc-alias": "^1.8.8",
"typescript": "^5.4.3",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^2.1.9"
},
"dependencies": {
"@prisma/client": "^5.11.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.2",
"extensionless": "^1.9.9",
"jsonwebtoken": "^9.0.2",
"module-alias": "^2.2.3",
"morgan": "^1.10.0",
"zod": "^3.23.8"
}
}