-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.76 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
{
"name": "tetris-multiplayer",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"start": "node dist/index.js",
"dev": "node node_modules/.bin/nodemon",
"build": "node node_modules/.bin/tsc && cp -r src/web/ dist/web/",
"lint": "node node_modules/.bin/eslint src/**/*.ts src/*.ts",
"lint:fix": "node node_modules/.bin/eslint --fix src/**/*.ts src/*.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Bharat Thakur",
"license": "ISC",
"dependencies": {
"@socket.io/redis-adapter": "^8.3.0",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"email-validator": "^2.0.4",
"express": "^4.19.2",
"express-rate-limit": "^7.3.1",
"ioredis": "^5.3.2",
"jsonwebtoken": "^9.0.1",
"mongodb": "^6.5.0",
"socket.io": "4.7.2",
"typescript": "^5.4.5",
"uuidv4": "^6.2.13",
"winston": "^3.10.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.0.2",
"@eslint/js": "^9.1.1",
"@types/bcrypt": "^5.0.2",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.3",
"@types/node": "^20.6.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
"globals": "^15.0.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.1",
"ts-node": "^10.9.1"
}
}