-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.09 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
{
"name": "edc-ws-chat-example",
"version": "1.0.0",
"description": "",
"main": "out/index.js",
"types": "out/index.d.ts",
"scripts": {
"lint": "eslint \"./src/**/*.ts\" --fix",
"build": " npm run lint && tsc --sourcemap",
"server": "node ./out/server/server.js",
"client": "node ./out/client/client.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/prompt-sync": "^4.1.0",
"@types/ws": "^7.2.7",
"edc-ws": "^0.1.4",
"prompt-sync": "^4.2.0",
"readline": "^1.3.0",
"ws": "^7.3.1"
},
"devDependencies": {
"@types/node": "^14.11.2",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"eslint": "^7.10.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.12.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.21.2",
"eslint-plugin-react-hooks": "^4.1.2",
"prettier": "^2.1.2",
"typescript": "^4.0.3"
}
}