-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.35 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "desafio-verx",
"version": "1.0.0",
"description": "Desafio Backend Verx",
"main": "server.js",
"scripts": {
"build": "babel src --extensions \".js,.ts\" --out-dir dist --copy-files --no-copy-ignored tsconfig.build.json",
"start": "npm run build && cross-env NODE_ENV=production node dist/server.js",
"dev": "cross-env NODE_ENV=development tsx watch ./src/server.ts",
"test": "jest --passWithNoTests --no-cache --runInBand",
"test:watch": "npm test -- --watch",
"test:coverage": "npm test -- --coverage",
"migrate": "dotenv -e .env.development npx prisma migrate dev"
},
"author": "SAMUEL SANTANA",
"license": "ISC",
"dependencies": {
"@prisma/client": "^5.7.1",
"body-parse": "^0.1.0",
"clc": "^1.0.2",
"cli-color": "^2.0.3",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.3.1",
"dotenv-cli": "^7.3.0",
"express": "^4.18.2",
"helmet": "^7.1.0",
"module-alias": "^2.2.3",
"morgan": "^1.10.0",
"path": "^0.12.7",
"pg": "^8.11.3",
"swagger-ui-express": "^5.0.0",
"uuid": "^9.0.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.7",
"@babel/node": "^7.22.19",
"@babel/preset-env": "^7.23.7",
"@babel/preset-typescript": "^7.23.3",
"@types/cli-color": "^2.0.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/module-alias": "^2.0.4",
"@types/morgan": "^1.9.9",
"@types/node": "^20.10.6",
"@types/swagger-ui-express": "^4.1.6",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-config-standard-with-typescript": "^43.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.1",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-promise": "^6.1.1",
"git-commit-msg-linter": "^5.0.6",
"jest": "^29.7.0",
"nodemon": "^3.0.2",
"prettier": "^3.1.1",
"prisma": "^5.7.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"prisma": {
"schema": "./src/shared/infra/database/prisma/schema.prisma"
},
"engine": {
"node": "18.17"
}
}