forked from typicode/json-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.39 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
55
56
57
58
59
{
"name": "json-server",
"version": "1.0.0-beta.0",
"description": "",
"type": "module",
"bin": {
"json-server": "lib/bin.js"
},
"types": "lib",
"files": [
"lib",
"views"
],
"engines": {
"node": ">=18.3"
},
"scripts": {
"dev": "tsx watch src/bin.ts fixtures/db.json",
"build": "rm -rf lib && tsc",
"test": "node --import tsx/esm --test src/*.test.ts",
"lint": "eslint src --ext .ts --ignore-path .gitignore",
"prepare": "husky",
"prepublishOnly": "npm run build"
},
"keywords": [],
"author": "typicode <[email protected]>",
"license": "SEE LICENSE IN ./LICENSE",
"repository": {
"type": "git",
"url": "git+https://github.com/typicode/json-server.git"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^5.0.0",
"@tailwindcss/typography": "^0.5.10",
"@types/node": "^20.11.7",
"@typicode/eslint-config": "^1.2.0",
"concurrently": "^8.2.2",
"get-port": "^7.0.0",
"husky": "^9.0.6",
"tempy": "^3.1.0",
"tsx": "^4.7.0",
"type-fest": "^4.10.1",
"typescript": "^5.3.3"
},
"dependencies": {
"@tinyhttp/app": "^2.2.3",
"@tinyhttp/cors": "^2.0.0",
"chalk": "^5.3.0",
"chokidar": "^3.5.3",
"dot-prop": "^8.0.2",
"eta": "^3.2.0",
"inflection": "^3.0.0",
"json5": "^2.2.3",
"lowdb": "^7.0.1",
"milliparsec": "^2.3.0",
"sirv": "^2.0.4",
"sort-on": "^6.0.0"
}
}