-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.2 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
{
"name": "alurachallengebackend5",
"version": "1.0.0",
"description": "Respositório para guardar os desafios do Alura Challenge BackEnd.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon index.ts",
"start": "node index.js",
"build": "tsc --build",
"clean": "tsc --build --clean"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Enyus/alurachallengebackend5.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Enyus/alurachallengebackend5/issues"
},
"homepage": "https://github.com/Enyus/alurachallengebackend5#readme",
"devDependencies": {
"@types/node": "^18.11.4",
"prisma": "^4.5.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"dependencies": {
"@prisma/client": "^4.5.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/jsonwebtoken": "^8.5.9",
"@types/nodemon": "^1.19.2",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"ejs": "^3.1.8",
"express": "^4.18.2",
"jsonwebtoken": "^8.5.1",
"nodemon": "^2.0.20"
}
}