-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.41 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
{
"name": "derivepass-storage",
"private": true,
"type": "module",
"version": "1.0.0",
"description": "DerivePass Storage Server",
"main": "index.js",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"start": "node .",
"lint": "eslint .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"repository": {
"type": "git",
"url": "git+https://github.com/derivepass/derivepass-storage.git"
},
"keywords": [
"derivepass",
"storage"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/derivepass/derivepass-storage/issues"
},
"homepage": "https://github.com/derivepass/derivepass-storage#readme",
"dependencies": {
"@fastify/cors": "^8.2.0",
"@fastify/one-line-logger": "^1.0.0",
"@fastify/rate-limit": "^7.5.0",
"@fastify/sensible": "^5.1.1",
"@fastify/type-provider-typebox": "^2.4.0",
"@sinclair/typebox": "^0.25.10",
"better-sqlite3": "^8.0.1",
"debug": "^4.3.4",
"fastify": "^4.10.2",
"fastify-plugin": "^4.3.0",
"secure-json-parse": "^2.5.0",
"typescript": "^4.9.3"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.2",
"@types/cors": "^2.8.12",
"@types/debug": "^4.1.7",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"eslint": "^8.28.0",
"eslint-plugin-import": "^2.26.0"
}
}