forked from typicode/json-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.44 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.44 KB
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
{
"name": "json-server",
"version": "1.0.0-beta.5",
"description": "",
"keywords": [],
"license": "SEE LICENSE IN ./LICENSE",
"author": "typicode <typicode@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/typicode/json-server.git"
},
"bin": {
"json-server": "lib/bin.js"
},
"files": [
"lib",
"views",
"schema.json"
],
"type": "module",
"scripts": {
"dev": "node --watch --experimental-strip-types src/bin.ts fixtures/db.json",
"build": "rm -rf lib && tsc",
"prepublishOnly": "rm -rf lib && tsc",
"typecheck": "tsc --noEmit",
"test": "node --experimental-strip-types --test src/*.test.ts",
"lint": "oxlint src",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"prepare": "husky"
},
"dependencies": {
"@tinyhttp/app": "^3.0.1",
"@tinyhttp/cors": "^2.0.1",
"@tinyhttp/logger": "^2.1.0",
"chalk": "^5.6.2",
"chokidar": "^5.0.0",
"dot-prop": "^10.1.0",
"eta": "^4.5.0",
"inflection": "^3.0.2",
"json5": "^2.2.3",
"lowdb": "^7.0.1",
"milliparsec": "^5.1.0",
"sirv": "^3.0.2",
"sort-on": "^7.0.0"
},
"devDependencies": {
"@types/node": "^25.0.8",
"concurrently": "^9.2.1",
"get-port": "^7.1.0",
"husky": "^9.1.7",
"oxfmt": "^0.24.0",
"oxlint": "^1.39.0",
"tempy": "^3.1.0",
"type-fest": "^5.4.0",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=22.12.0"
}
}