-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 872 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 872 Bytes
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
{
"name": "HackTheNorthBackend",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-rate-limit": "^5.1.3",
"@types/node": "^16.9.2",
"@types/socket.io": "^3.0.2",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-rate-limit": "^5.3.0",
"socket.io": "^4.2.0",
"ts-node": "^10.2.1",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.3"
},
"scripts": {
"start": "node dist/index.js",
"build": "tsc && cp -r src/public dist/public",
"clean": "rm -rf dist",
"dev": "ts-node-dev src/index.ts",
"lint": "eslint ./src",
"lint:fix": "yarn lint --fix"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"eslint": "^7.32.0"
}
}