forked from Tatino12/HumbleFood-back-end
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 930 Bytes
/
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
{
"name": "back-end",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"scripts": {
"tsc": "tsc",
"start": "node ./build/index.js",
"dev": "nodemon index.ts",
"postinstall": "npm run tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tatino12/back-end.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Tatino12/back-end/issues"
},
"homepage": "https://github.com/Tatino12/back-end#readme",
"keywords": [],
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^17.0.21",
"prisma": "^3.11.0",
"ts-node": "^10.6.0",
"typescript": "^4.6.2"
},
"dependencies": {
"@prisma/client": "^3.11.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"morgan": "^1.10.0",
"nodemailer": "^6.7.2",
"nodemon": "^2.0.15"
}
}