-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.06 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
{
"name": "ddd-node-rpc",
"version": "0.0.1",
"description": "JSON-RPC 2.0 for DDD Node applications",
"main": "index.js",
"author": "MaxSvargal <[email protected]>",
"license": "MIT",
"scripts": {
"eslint-fix": "eslint ./ --ext .js,.ts,.tsx --fix",
"format": "prettier --write ./",
"lint": "eslint ./ --ext .js,.ts,.tsx --format visualstudio --no-color --max-warnings 10 --report-unused-disable-directives",
"jest": "npx jest --watch --runInBand",
"test": "npm run jest"
},
"devDependencies": {
"@types/jest": "^26.0.10",
"@types/node": "^14.6.0",
"@types/ws": "^7.2.6",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.0",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.4.0",
"jest-cucumber": "^3.0.0",
"minimist": "^1.2.5",
"prettier": "^2.0.5",
"ts-jest": "^26.2.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"dependencies": {
"ws": "^7.3.1"
}
}