-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1020 Bytes
/
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": "sunnyq-socketio",
"version": "1.0.0",
"main": "src/index.ts",
"scripts": {
"build": "npx tsc",
"start": "node dist/index.js",
"dev": "dotenv -e .env.local nodemon src/index.ts",
"lint": "prettier --check .",
"check-types": "tsc -p tsconfig.json --noEmit",
"check-format": "prettier --ignore-path .gitignore --check **/*.{js,jsx,ts,tsx,json,css}",
"check-all": "npm run check-format && npm run check-types && npm run lint",
"format": "prettier --write .",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@socket.io/admin-ui": "^0.5.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"husky": "^9.1.4",
"lint-staged": "^15.2.7",
"socket.io": "^4.7.5"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^22.0.2",
"nodemon": "^3.1.4",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
}
}