-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.82 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
60
61
62
63
{
"name": "@sadoprotocol/sado-api",
"version": "0.0.0",
"private": true,
"scripts": {
"prepare": "husky install",
"build": "tsc",
"start": "DEBUG=sado-* ts-node-dev ./src/main.ts",
"worker": "DEBUG=sado-* ts-node ./src/worker.ts",
"mongodb:start": "docker compose -f ./docker-compose-mongo.yaml up -d",
"mongodb:stop": "docker compose -f ./docker-compose-mongo.yaml down",
"clean": "rm -rf dist",
"lint": "eslint ./src --max-warnings 0 --report-unused-disable-directives --fix"
},
"dependencies": {
"@fastify/cors": "^8.3.0",
"@fastify/helmet": "^10.1.1",
"@valkyr/api": "0.23.2",
"bech32": "^2.0.0",
"bip32": "^4.0.0",
"bip39": "^3.1.0",
"bitcoinjs-lib": "6.1.3",
"bitcoinjs-message": "^2.2.0",
"computed-types": "^1.11.2",
"debug": "~4.3.4",
"dotenv": "^16.1.4",
"fastify": "^4.18.0",
"form-data": "^4.0.0",
"http-errors": "~2.0.0",
"moment": "^2.29.4",
"mongodb": "^5.6.0",
"node-fetch": "^2.6.11",
"p-limit": "^3.1.0",
"tiny-secp256k1": "^2.2.2",
"varuint-bitcoin": "^1.1.2",
"ws": "^8.13.0"
},
"devDependencies": {
"@types/debug": "^4.1.8",
"@types/form-data": "^2.5.0",
"@types/http-errors": "^2.0.1",
"@types/node": "^18.16.18",
"@types/node-fetch": "^2.6.4",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-anti-trojan-source": "^1.1.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.1.3"
},
"lint-staged": {
"**/*.ts": "prettier --write --ignore-unknown"
},
"engines": {
"node": "^18.0.0"
}
}