-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.35 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
{
"name": "live-data-server",
"version": "1.1.0",
"description": "Similar to [json-server](https://github.com/typicode/json-server) but backed by sqlite3",
"main": "index.js",
"scripts": {
"prepublishOnly": "npm test && npm run build",
"test": "tsc --noEmit",
"build": "tsc"
},
"keywords": [
"generic",
"restful",
"data",
"server",
"json",
"sqlite3",
"cli"
],
"author": {
"name": "Beeno Tung",
"email": "aabbcc1241@yahoo.com.hk",
"url": "https://beeno-tung.surge.sh"
},
"license": "BSD-2-Clause",
"bin": {
"live-data-server": "cli.js",
"data-server": "cli.js"
},
"files": [
"dist/*.js"
],
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/formidable": "^2.0.6",
"@types/node": "^18.17.3",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.1.6"
},
"dependencies": {
"better-sqlite3-schema": "^3.1.2",
"cors": "^2.8.5",
"express": "^4.18.2",
"formidable": "^2.1.2",
"listening-on": "^2.0.9",
"live-data-sync": "^1.0.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/beenotung/live-data-server.git"
},
"bugs": {
"url": "https://github.com/beenotung/live-data-server/issues"
},
"homepage": "https://github.com/beenotung/live-data-server#readme"
}