-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.35 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
54
55
{
"name": "server",
"version": "1.0.0",
"main": "src/server.ts",
"license": "MIT",
"scripts": {
"start": "nodemon -r tsconfig-paths/register src/server.ts ",
"build": "tsc --project .",
"lint": "eslint src/**/*.ts",
"format": "eslint src/**/*.ts --fix"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"_moduleAliases": {
"@": "build",
"@modules": "build/modules*"
},
"dependencies": {
"axios": "^0.21.1",
"cors": "^2.8.5",
"cron": "^1.8.2",
"dotenv": "^9.0.2",
"express": "^4.17.1",
"express-rate-limit": "^5.2.6",
"helmet": "^4.6.0",
"husky": "^6.0.0",
"module-alias": "^2.2.2",
"moment": "^2.29.1",
"monk": "^7.3.4",
"monk-middleware-wrap-non-dollar-update": "^0.2.1",
"morgan": "^1.10.0",
"socket.io": "^4.1.2",
"tslog": "^3.2.0"
},
"devDependencies": {
"@types/cors": "^2.8.10",
"@types/cron": "^1.7.2",
"@types/express": "^4.17.11",
"@types/express-rate-limit": "^5.1.1",
"@types/moment": "^2.13.0",
"@types/morgan": "^1.9.2",
"@types/node": "^15.3.0",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"eslint": "^7.26.0",
"nodemon": "^2.0.7",
"prettier": "^2.3.0",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.2.4"
}
}