forked from vck3000/ProAvalon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.88 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
{
"name": "proavalon",
"version": "1.0.0",
"description": "ProAvalon",
"scripts": {
"build": "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 --exit-child --respawn --ignore-watch \".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 --maxWorkers=1",
"test:watch": "jest --watchAll --maxWorkers=1",
"test:coverage": "jest --coverage --maxWorkers=1"
},
"author": "Victor Kuo",
"license": "ISC",
"dependencies": {
"axios": "^0.21.1",
"body-parser": "^1.18.2",
"circular-json": "^0.5.5",
"compression": "^1.7.4",
"connect-flash": "^0.1.1",
"connect-mongodb-session": "^2.2.0",
"cookie-parser": "^1.4.3",
"discord.js": "^12.5.3",
"dotenv": "^8.1.0",
"ejs": "^2.5.7",
"express": "^4.16.2",
"express-rate-limit": "^5.0.0",
"express-session": "^1.15.6",
"form-data": "^4.0.0",
"generaterr": "^1.5.0",
"http-proxy-middleware": "^0.19.1",
"linkifyjs": "^2.1.7",
"log-timestamp": "^0.3.0",
"mailgun.js": "^3.4.0",
"method-override": "^3.0.0",
"moment": "^2.24.0",
"mongoose": "^5.12.15",
"multer": "^1.4.2",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^6.1.0",
"passport-one-session-per-user": "^1.0.3",
"passport.socketio": "^3.7.0",
"patreon": "^0.4.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hot-loader": "^4.13.0",
"request": "^2.87.0",
"sanitize-html": "^2.4.0",
"save": "^2.3.2",
"scmp": "^2.1.0",
"socket.io": "^4.1.2",
"socket.io-client": "^2.3.0",
"staticify": "^3.1.0",
"sweetalert2": "^8.17.6",
"treeify": "^1.1.0",
"typescript": "^4.1.3",
"uuid": "^3.3.3",
"validator": "^12.1.0"
},
"nodemonConfig": {
"ignore": [
"assets/gameRecordsData/*"
]
},
"devDependencies": {
"@types/ejs": "^3.0.6",
"@types/express": "^4.17.12",
"@types/form-data": "^2.5.0",
"@types/jest": "^26.0.23",
"@types/node": "^15.12.2",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.8",
"@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": "^27.0.3",
"prettier": "2.3.1",
"ts-jest": "^27.0.2",
"ts-loader": "^9.2.3",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.1",
"webpack": "^5.39.1",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.8.0"
}
}