-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.46 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.46 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
{
"name": "dbviewer",
"type": "module",
"author": "TTPO100AJIEX",
"license": "MIT",
"version": "1.0.0",
"description": "",
"scripts": {
"website": "node website/index.js",
"db:delete": "node PostgreSQL/delete.js",
"db:create": "node PostgreSQL/create.js",
"db:setup": "node PostgreSQL/setup.js",
"db:fill": "node PostgreSQL/fill.js",
"db:recreate": "npm run db:delete && npm run db:create && npm run db:setup && npm run db:fill"
},
"dependencies": {
"@fastify/circuit-breaker": "^3.2.0",
"@fastify/compress": "^6.2.1",
"@fastify/cookie": "^8.3.0",
"@fastify/cors": "^8.2.1",
"@fastify/formbody": "^7.4.0",
"@fastify/helmet": "^10.1.0",
"@fastify/rate-limit": "^7.6.0",
"@fastify/static": "^6.10.1",
"@fastify/under-pressure": "^8.2.0",
"@fastify/view": "^7.4.1",
"@fastify/websocket": "^7.2.0",
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"bcrypt": "^5.1.0",
"common": "file:common",
"ejs": "^3.1.9",
"fastify": "^4.15.0",
"fastify-plugin": "^4.5.0",
"html-minifier": "^4.0.0",
"ioredis": "^5.3.2",
"pg": "^8.10.0",
"pg-cursor": "^2.9.0",
"pg-format": "^1.0.4",
"postgres-interval": "^4.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TTPO100AJIEX/DBViewer.git"
}
}