-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 958 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 958 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
32
33
34
35
36
37
{
"name": "jsonfeedserver",
"version": "2.0.0",
"description": "A JSON Feed Server",
"author": "Chad Lung",
"license": "MIT",
"homepage": "https://github.com/chadlung/jsonfeedserver#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/chadlung/jsonfeedserver.git"
},
"bugs": {
"url": "https://github.com/chadlung/jsonfeedserver/issues"
},
"main": "index.js",
"scripts": {
"start": "npx tsx --env-file=.env --watch src/app.ts",
"lint": "eslint .",
"eslint:fix": "eslint . --fix"
},
"dependencies": {
"-": "^0.0.1",
"@prisma/client": "6.7.0",
"express": "4.21.2",
"http-status": "^2.1.0",
"save-dev": "^0.0.1-security"
},
"devDependencies": {
"@antfu/eslint-config": "^4.13.0",
"@types/express": "5.0.1",
"@types/node": "^22.13.10",
"eslint": "^9.26.0",
"eslint-plugin-format": "^1.0.1",
"prisma": "^6.7.0",
"typescript": "^5.8.3"
}
}