-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.96 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
{
"name": "picce-api",
"version": "1.0.0",
"description": "### Introduction",
"main": "index.js",
"scripts": {
"test": "jest",
"start": "nodemon --watch 'src/' --exec 'ts-node src/app.ts' -e ts",
"prettier": "prettier --config .prettierrc --write \"src/**/*.{js,ts}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/VRI-UFPR/PICCE-API.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/VRI-UFPR/PICCE-API/issues"
},
"homepage": "https://github.com/VRI-UFPR/PICCE-API#readme",
"prisma": {
"seed": "ts-node prisma/seeds/seed.ts"
},
"dependencies": {
"@prisma/client": "^5.2.0",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.4",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"ms": "^2.1.3",
"multer": "^1.4.5-lts.1",
"object-to-formdata": "^4.5.1",
"passport": "^0.6.0",
"passport-jwt": "^4.0.1",
"pg": "^8.11.3",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"yup": "^1.2.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.16",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.6",
"@types/jsonwebtoken": "^9.0.4",
"@types/ms": "^0.7.34",
"@types/multer": "^1.4.7",
"@types/node": "^20.5.3",
"@types/passport": "^1.0.14",
"@types/passport-jwt": "^3.0.11",
"@types/supertest": "^2.0.15",
"body-parser": "^1.20.2",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"prisma": "^5.2.0",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.1.6"
}
}