-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.12 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": "chess-by-rookie-server",
"version": "1.0.0",
"description": "websocket signaling server for webrtc chess game",
"type": "module",
"main": "dist/server.js",
"scripts": {
"dev": "tsc -w & nodemon ./server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx",
"lint-fix": "eslint src --ext .js,.jsx,.ts,.tsx --fix",
"format": "prettier \"src/**/*.{js,jsx,ts,tsx,css,scss}\" --write",
"compile": "tsc"
},
"keywords": [
"websocket",
"signaling",
"server"
],
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"nodemon": "^3.0.3",
"prettier": "^3.2.4",
"typescript": "^5.3.3"
},
"dependencies": {
"@types/ws": "^8.5.10",
"rate-limiter-flexible": "^5.0.0",
"ws": "^8.16.0"
}
}