forked from TBD54566975/dwn-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.3 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
{
"name": "dwn-server",
"type": "module",
"version": "0.0.2",
"dependencies": {
"@tbd54566975/dwn-sdk-js": "0.0.33",
"bytes": "3.1.2",
"node-fetch": "3.3.1",
"cors": "2.8.5",
"express": "4.18.2",
"multiformats": "11.0.2",
"prom-client": "14.2.0",
"readable-stream": "4.3.0",
"response-time": "2.3.2",
"uuid": "9.0.0",
"ws": "8.12.0"
},
"devDependencies": {
"@types/bytes": "3.1.1",
"@types/chai": "4.3.4",
"@types/express": "4.17.17",
"@types/mocha": "10.0.1",
"@types/node": "18.11.18",
"@types/readable-stream": "2.3.15",
"@types/supertest": "2.0.12",
"@types/ws": "8.5.4",
"@typescript-eslint/eslint-plugin": "5.59.0",
"@typescript-eslint/parser": "5.59.0",
"chai": "4.3.6",
"chai-as-promised": "7.1.1",
"eslint": "8.33.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-mocha": "10.1.0",
"mocha": "10.2.0",
"supertest": "6.3.3",
"typescript": "5.0.4"
},
"scripts": {
"compile": "tsc",
"test": "npm run compile && cp -R tests/fixtures dist/tests && mocha dist/tests/*.spec.js",
"server": "npm run compile && node dist/src/main.js"
}
}