-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.56 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
{
"name": "restaurant-api",
"version": "1.0.0",
"description": "Restaurant API with Prisma and Express",
"main": "dist/server.js",
"type": "commonjs",
"scripts": {
"build": "rimraf dist && npx tsc",
"prestart": "npm run build",
"start": "node dist/server.js",
"preserve": "npm run build",
"dev": "concurrently \"npx tsc -w\" \"nodemon dist/server.js\"",
"prisma": "npx prisma migrate dev --name init",
"lint": "eslint .",
"format": "prettier --write ."
},
"keywords": [
"prisma",
"express",
"typescript",
"api",
"restaurant",
"food",
"restaurant-api"
],
"license": "MIT",
"dependencies": {
"@prisma/client": "^5.9.1",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"date-fns": "^3.3.1",
"dotenv": "^16.4.1",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"express-rate-limit": "^7.1.5",
"ioredis": "^5.3.2",
"jsonwebtoken": "^9.0.2",
"prisma": "^5.9.1",
"rimraf": "^5.0.5",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.11.16",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"concurrently": "^8.2.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"nodemon": "^3.0.3",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"author": {
"name": "itzAmka",
"url": "https://amka.dev",
"twitter": "https://twitter.com/itzAmka",
"github": "itzAmka"
}
}