-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.35 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
{
"name": "microsblog",
"version": "1.0.0",
"description": "A simple and efficient REST API for managing blog posts and users. Built with Node.js, Express.js, TypeScript, and Prisma",
"main": "./src/index.ts",
"scripts": {
"dev": "npx nodemon ./src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npx prisma generate && tsc",
"build": "npx prisma generate && tsc",
"ts.check": "tsc --project tsconfig.json",
"heroku-prebuild": "npm install -g typescript"
},
"keywords": [
"Rest API",
"Typescript",
"Express JS",
"Development",
"Example Project",
"flydotio"
],
"author": "Alif Ryuu(zoelabbb)",
"Github": "https://github.com/zoelabbb",
"license": "ISC",
"dependencies": {
"@prisma/client": "^5.6.0",
"@types/http-errors": "^2.0.4",
"@types/jsonwebtoken": "^9.0.5",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2"
},
"devDependencies": {
"@flydotio/dockerfile": "^0.4.11",
"@types/express": "^4.17.21",
"@types/node": "^20.10.1",
"bun-types": "latest",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"prisma": "^5.6.0",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"engines": {
"node": ">=18.0.0"
},
"dockerfile": {
"packages": {
"deploy": [
"dnsutils"
]
}
}
}