-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.1 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
{
"name": "favfonts-be",
"version": "0.0.1",
"description": "Backend repository fro Voyage 46 Chingu - Favorite Fonts",
"main": "index.js",
"scripts": {
"start": "node dist/index.js",
"start2": "ts-node src/index.ts",
"dev": "npx nodemon src/index.ts",
"build": "tsc",
"serve": "node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sumirart/favfonts-be.git"
},
"author": "Tama",
"license": "ISC",
"bugs": {
"url": "https://github.com/sumirart/favfonts-be/issues"
},
"homepage": "https://github.com/sumirart/favfonts-be#readme",
"devDependencies": {
"@flydotio/dockerfile": "^0.4.10",
"@types/express": "^4.17.18",
"@types/node": "^20.7.0",
"nodemon": "^3.0.1",
"prisma": "^5.3.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@prisma/client": "^5.3.1",
"@types/bcryptjs": "^2.4.4",
"@types/jsonwebtoken": "^9.0.3",
"bcryptjs": "^2.4.3",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"http-errors": "^2.0.0",
"jsonwebtoken": "^9.0.2"
}
}