-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.7 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.7 KB
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
56
57
58
59
{
"name": "odd-game-server",
"version": "1.0.0",
"description": "Odd Game Server",
"main": "index.js",
"scripts": {
"dev": "ts-node -r tsconfig-paths/register --files src/main.ts",
"seed": "ts-node -r tsconfig-paths/register --files src/seeds/card.ts",
"build": "tsc",
"prod": "PORT=1100 node -r tsconfig-paths/register dist/main.js",
"lint": "eslint 'src/**/*.{js,ts}'",
"lint:fix": "eslint --fix 'src/**/*.{js,ts}'",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/compression": "^1.7.0",
"@types/cookie": "^0.4.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.7",
"@types/express": "^4.17.8",
"@types/jsonwebtoken": "^8.5.0",
"@types/mongodb": "^3.5.27",
"@types/node": "^14.10.2",
"@types/redis": "^2.8.27",
"@types/socket.io": "^2.1.11",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"eslint": "^7.9.0",
"eslint-config-standard-with-typescript": "^19.0.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.3.0",
"ts-node": "^9.0.0",
"tsconfig-paths": "^3.9.0",
"tslint-config-standard": "^9.0.0",
"typescript": "^4.0.2"
},
"dependencies": {
"body-parser": "^1.19.0",
"change-case": "^4.1.1",
"compression": "^1.7.4",
"cookie": "^0.4.1",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.6.2",
"redis": "^3.0.2",
"socket.io": "^2.3.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}