-
Notifications
You must be signed in to change notification settings - Fork 74
/
package.json
112 lines (112 loc) · 3.4 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "proavalon",
"version": "1.0.0",
"description": "ProAvalon",
"scripts": {
"build": "rm -rf out; rm -f ./assets/dist_webpack/*; tsc && webpack --config webpack.prod.js && cp -R ./src/views ./out",
"dev": "concurrently -k \"npm:dev:tsnd\" \"npm:dev:webpack\"",
"dev:tsnd": "ts-node-dev --respawn --inspect --ignore-watch \"views/.*\\.tsx$\" ./src/app.ts",
"dev:webpack": "rm -f ./assets/dist_webpack/* && webpack serve --config webpack.dev.js",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --fix",
"start": "node ./out/app.js",
"test": "jest",
"test:watch": "jest --watchAll",
"test:coverage": "jest --coverage"
},
"author": "Victor Kuo",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.550.0",
"@aws-sdk/credential-providers": "^3.549.0",
"axios": "^0.21.2",
"binary-search-tree": "0.2.6",
"body-parser": "^1.18.2",
"circular-json": "^0.5.5",
"compression": "^1.7.4",
"connect-flash": "^0.1.1",
"connect-mongodb-session": "^5.0.0",
"cookie-parser": "^1.4.3",
"css-loader": "^7.1.1",
"discord.js": "^12.5.3",
"dotenv": "^8.1.0",
"ejs": "^3.1.7",
"express": "^4.16.2",
"express-rate-limit": "^5.0.0",
"express-session": "^1.15.6",
"form-data": "^4.0.0",
"http-proxy-middleware": "^0.19.1",
"image-size": "^1.1.1",
"linkifyjs": "^2.1.7",
"log-timestamp": "^0.3.0",
"mailgun.js": "^10.0.1",
"method-override": "^3.0.0",
"moment": "^2.29.4",
"mongodb": "^6.3.0",
"mongoose": "^6.8.1",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^6.1.0",
"passport.socketio": "^3.7.0",
"patreon": "^0.4.1",
"prom-client": "^15.1.2",
"react": "^17.0.2",
"react-autosuggest": "^10.1.0",
"react-dom": "^17.0.2",
"react-hot-loader": "^4.13.0",
"react-modal": "^3.14.4",
"request": "^2.87.0",
"sanitize-html": "^2.4.0",
"socket.io": "^4.1.2",
"socket.io-client": "^2.3.0",
"staticify": "^3.1.0",
"style-loader": "^4.0.0",
"sweetalert2": "^11.10.5",
"treeify": "^1.1.0",
"typescript": "^4.9.5",
"uuid": "^3.3.3",
"validator": "^13.7.0"
},
"resolutions": {
"@types/react": "^17.0.2"
},
"nodemonConfig": {
"ignore": [
"assets/gameRecordsData/*"
]
},
"devDependencies": {
"@types/ejs": "^3.0.6",
"@types/express": "^4.17.12",
"@types/form-data": "^2.5.0",
"@types/jest": "^29.5.12",
"@types/multer": "^1.4.11",
"@types/node": "^15.12.2",
"@types/react": "^17.0.11",
"@types/react-autosuggest": "^10.1.5",
"@types/react-dom": "^17.0.8",
"@types/react-modal": "^3.13.1",
"@types/sanitize-html": "^2.8.0",
"@types/uuid": "^8.3.0",
"@types/webpack-env": "^1.16.0",
"@types/ws": "^7.4.5",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"concurrently": "^6.2.0",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"jest": "^29.7.0",
"prettier": "2.3.1",
"ts-jest": "^29.1.2",
"ts-loader": "^9.2.3",
"ts-node": "^9.1.1",
"ts-node-dev": "^2.0.0",
"webpack": "^5.76.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4",
"webpack-merge": "^5.8.0"
},
"packageManager": "[email protected]+sha1.1959a18351b811cdeedbd484a8f86c3cc3bbaf72"
}