-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.25 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
{
"name": "blogapi",
"version": "1.0.0",
"description": "Backend API for Blogs project.",
"main": "dist/orchestrator.js",
"type": "module",
"scripts": {
"build": "tspc",
"clean": "tsc -b --clean",
"dev": "nodemon --inspect src/server.ts",
"start": "node .",
"test": "ts-node-esm src/test/index.ts",
"cannon": "npx autocannon -c 500 -d 30 --renderStatusCodes --latency localhost:3000/api/v1/post",
"generateKeys": "node ./bin/generateKeys.js"
},
"repository": {
"type": "git",
"url": "https://github.com/modscleo4/blogapi.git"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"devDependencies": {
"@types/node": "^20.12.12",
"@types/nodemailer": "^6.4.15",
"autocannon": "^7.15.0",
"nodemon": "^3.1.0",
"ts-node": "^10.9.2",
"ts-patch": "^3.1.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.4.5",
"typescript-transform-paths": "^3.4.7"
},
"dependencies": {
"@prisma/client": "^5.14.0",
"dotenv": "^16.4.5",
"handlebars": "^4.7.8",
"midori": "github:modscleo4/midori",
"midori-swaggerui": "github:modscleo4/midori-swaggerui",
"nodemailer": "^6.9.13",
"prisma": "^5.14.0",
"zod": "^3.23.8"
},
"engines": {
"node": ">=18"
}
}