-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.4 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
{
"name": "os-system",
"version": "1.0.0",
"description": "OS System - Criação de ordem de serviço",
"main": "index.js",
"scripts": {
"dev:build": "docker compose up -d && prisma generate && prisma migrate dev && prisma db seed && mkdir uploads",
"dev:start": "nodemon",
"prepare": "husky install",
"lint": "npx eslint . --cache",
"pre-commit": "lint-staged"
},
"prisma": {
"seed": "ts-node ./prisma/database/seed.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.2",
"@types/multer": "^1.4.8",
"@types/node": "^18.14.2",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint": "^8.35.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"nodemon": "^3.1.0",
"prisma": "^4.11.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"@prisma/client": "^4.11.0",
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"jsonwebtoken": "^9.0.0",
"multer": "^1.4.5-lts.1",
"swagger-ui-express": "^5.0.0"
}
}