-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
53 lines (53 loc) · 1.78 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": "dunder-lsp",
"scripts": {
"build": "tsc -p tsconfig.json",
"prebuild": "cd src/services/admin/react-admin && NODE_OPTIONS=--openssl-legacy-provider npm run build",
"postbuild": "cp src/proto.js dist && cp -r src/services/admin/react-admin/build dist/services/admin/public",
"start": "node --max-http-header-size=800000 dist/server.js",
"watch": "concurrently \"tsc -p tsconfig.json -w\" \"nodemon -w dist dist/server.js\"",
"proto": "pbjs --force-long -t static-module -o src/proto.js proto/rpc.proto proto/router.proto && pbts -o src/proto.d.ts src/proto.js",
"test": "jest tests",
"test:coverage": "jest --coverage --coveragePathIgnorePatterns \"proto\\.js|mocks\" tests"
},
"version": "1.0.0",
"private": true,
"author": "Hampus Sjöberg",
"license": "MIT",
"dependencies": {
"@fastify/cookie": "6.0.0",
"@grpc/grpc-js": "^1.9.14",
"@grpc/proto-loader": "^0.7.10",
"bech32": "2.0.0",
"config": "^3.3.6",
"date-fns": "^2.21.0",
"fastify": "^3.14.2",
"fastify-cookie": "^5.3.0",
"fastify-cors": "^5.2.0",
"fastify-session": "^5.2.1",
"fastify-static": "4.0.1",
"fastify-websocket": "^3.1.0",
"protobufjs": "^7.2.6",
"protobufjs-cli": "^1.1.2",
"qrcode-terminal": "^0.12.0",
"secp256k1": "^4.0.2",
"sql-template-strings": "^2.2.2",
"sqlite": "^4.1.2",
"sqlite3": "^5.1.2",
"sqlstring": "^2.3.2"
},
"devDependencies": {
"@types/config": "^0.0.38",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.39",
"@types/secp256k1": "^4.0.2",
"@types/sqlstring": "^2.3.0",
"concurrently": "^8.2.0",
"jest": "^26.6.3",
"nodemon": "^3.0.1",
"stream-mock": "^2.0.5",
"ts-jest": "^26.5.4",
"typescript": "^4.9.5",
"wait-for-expect": "^3.0.2"
}
}