-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.26 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
{
"name": "invoice-app-api",
"version": "1.0.0",
"description": "This is n API for the invoice app",
"main": "dist/src/server.js",
"scripts": {
"start:dev": "nodemon src/server.ts",
"build": "rimraf dist && npx tsc",
"start": "npm run build && node dist/src/server.js",
"test": "jest"
},
"keywords": [],
"author": "Jose Furtado",
"license": "ISC",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.15",
"@types/jest": "^29.2.4",
"@types/jsonwebtoken": "^8.5.9",
"@types/morgan": "^1.9.3",
"@types/node": "^18.11.16",
"@types/supertest": "^2.0.12",
"@types/swagger-ui-express": "^4.1.3",
"jest": "^29.3.1",
"nodemon": "^2.0.20",
"prisma": "^4.7.1",
"supertest": "^6.3.3",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"@prisma/client": "^4.7.1",
"@types/yamljs": "^0.2.31",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"rimraf": "^3.0.2",
"swagger-ui-express": "^4.6.0",
"yamljs": "^0.3.0"
}
}