-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·31 lines (31 loc) · 836 Bytes
/
package.json
File metadata and controls
executable file
·31 lines (31 loc) · 836 Bytes
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
{
"name": "ktm-server",
"version": "1.0.0",
"main": "server.js",
"author": "ADamian17 <adonisdesuvikdo@gmail.com>",
"license": "MIT",
"scripts": {
"start": "node ./dist/server.js",
"dev": "concurrently --handle-input -n server,ts -c 'bgGreen.bold,bgBlue.bold' 'npm:watch:nodemon' 'npm:watch:ts' rs",
"watch:nodemon": "nodemon dist/server.js",
"watch:ts": "tsc -w",
"build": "yarn tsc"
},
"dependencies": {
"@prisma/client": "^5.8.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"helmet": "^7.1.0",
"prisma": "^5.8.1"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"concurrently": "^8.2.2",
"nodemon": "^3.0.2",
"prettier": "^3.2.2",
"typescript": "^5.3.3"
}
}