forked from open-rpc/server-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.5 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
{
"name": "@open-rpc/server-js",
"private": false,
"version": "0.0.0-semantic-release-dev",
"description": "",
"repository": {
"type": "git",
"url": "https://github.com/open-rpc/server-js.git"
},
"main": "./build/index.js",
"files": [
"build",
"!build/**/*.test.*",
".node-version"
],
"scripts": {
"start": "./build/cli.js",
"test": "npm run build && npm run test:unit",
"test:unit": "jest --coverage",
"build": "tsc",
"watch:build": "tsc --watch",
"watch:test": "jest --watch",
"lint": "eslint . --ext .ts"
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@open-rpc/schema-utils-js": "^2.0.2",
"body-parser": "^1.19.0",
"connect": "^3.7.0",
"cors": "^2.8.5",
"json-schema-faker": "^0.5.0-rcv.26",
"lodash": "^4.17.19",
"node-ipc": "9.1.1",
"ws": "^8.0.0"
},
"devDependencies": {
"@open-rpc/examples": "^1.7.2",
"@open-rpc/meta-schema": "^1.14.9",
"@types/body-parser": "^1.19.5",
"@types/connect": "^3.4.38",
"@types/cors": "^2.8.17",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.12",
"@types/json-schema": "^7.0.15",
"@types/lodash": "^4.17.1",
"@types/node": "^20.12.11",
"@types/node-ipc": "^9.2.3",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.17.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^4.9.5",
"undici": "^6.16.0"
}
}