This repository has been archived by the owner on Apr 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
60 lines (60 loc) · 1.79 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
56
57
58
59
60
{
"name": "fs-pro-server",
"version": "0.1.0",
"description": "Game Server for FS PRO",
"main": "server.js",
"engines": {
"node": ">=8.10.0"
},
"scripts": {
"tsc": "tsc",
"dev": "set NODE_ENV=dev && npm run start-dev",
"dev-test": "set NODE_ENV=dev && set DEV_TEST=true && npm run start-dev",
"start-dev": "ts-node-dev --respawn --transpile-only ./src/server.ts",
"prod": "tsc && node ./build/server.js",
"lint": "eslint src/. --ext .ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "@LeanKhan",
"license": "ISC",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/connect-mongodb-session": "0.0.3",
"@types/cookie": "^0.3.3",
"@types/cors": "^2.8.5",
"@types/dotenv": "^6.1.1",
"@types/express-session": "^1.17.0",
"@types/express-socket.io-session": "^1.3.2",
"@types/socket.io": "^2.1.2",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.2.0",
"ts-node-dev": "^1.0.0-pre.39",
"typescript": "^3.9.7"
},
"dependencies": {
"@types/express": "^4.16.1",
"@types/mongoose": "^5.5.3",
"@types/multer": "^1.3.10",
"axios": "^0.27.2",
"bcryptjs": "^2.4.3",
"connect-mongodb-session": "^2.3.1",
"cookie": "^0.4.1",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"express-socket.io-session": "^1.3.5",
"fast-csv": "^4.3.6",
"mongoose": "^6.3.3",
"mongoose-autopopulate": "^0.14.0",
"multer": "^1.4.2",
"socket.io": "^2.2.0",
"winston": "^3.7.2"
}
}