-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.54 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.54 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
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
{
"name": "pickup-bot",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"build:devapp": "cross-env NODE_ENV=production webpack --config webpack.www.config.js --mode=production",
"dev:devapp": "cross-env NODE_ENV=development webpack --config webpack.www.config.js --watch",
"dev:www": "cd ./www && npm run serve",
"build:www": "cd ./www && npm run build",
"build:bot": "tsc -p ./tsconfig.json",
"debug:bot": "cross-env TS_NODE_PROJECT=tsconfig.json DEV=true node --inspect=5858 -r ts-node/register ./app.ts",
"dev:bot": "cross-env DEBUG=true nodemon",
"dev:all": "npm-run-all --parallel dev:bot dev:www dev:devapp",
"build:all": "npm-run-all --parallel build:bot build:www"
},
"nodemonConfig": {
"ignore": [
"**/*.test.ts",
"**/*.spec.ts",
".git",
"node_modules",
"www"
],
"watch": [
"."
],
"exec": "npm run debug:bot",
"ext": "ts",
"stdin": false
},
"repository": {
"type": "git",
"url": "git+https://github.com/slice3984/pickup-bot.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/slice3984/pickup-bot/issues"
},
"homepage": "https://github.com/slice3984/pickup-bot#readme",
"devDependencies": {
"@types/chart.js": "^2.9.25",
"@types/ejs": "^3.0.4",
"@types/express": "^4.17.8",
"@types/express-rate-limit": "^5.1.0",
"@types/inquirer": "^7.3.1",
"@types/node": "^20.8.6",
"@types/socket.io": "^2.1.11",
"@types/socket.io-client": "^1.4.34",
"@vue/cli-plugin-typescript": "^5.0.8",
"@vue/cli-service": "^5.0.8",
"autoprefixer": "^9.8.6",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.1.1",
"cross-env": "^7.0.2",
"css-loader": "^3.6.0",
"html-webpack-plugin": "^4.5.0",
"mini-css-extract-plugin": "^2.2.0",
"nodemon": "^2.0.22",
"npm-run-all": "^4.1.5",
"postcss-loader": "^3.0.0",
"sass": "^1.37.5",
"sass-loader": "^12.1.0",
"terser-webpack-plugin": "^3.1.0",
"ts-loader": "^7.0.5",
"ts-node": "^8.10.2",
"typescript": "^5.2.2",
"webpack": "^5.49.0",
"webpack-cli": "^4.7.2",
"webpack-livereload-plugin": "^3.0.2",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"chart.js": "^2.9.3",
"connect-history-api-fallback": "^1.6.0",
"discord-oauth2": "^2.5.0",
"discord.js": "^14.13.0",
"express": "^4.17.1",
"express-rate-limit": "^5.1.3",
"express-session": "^1.17.1",
"ffmpeg-static": "^4.2.7",
"inquirer": "^7.3.3",
"inquirer-autocomplete-prompt": "^1.2.0",
"mysql2": "^3.6.2",
"socket.io": "^2.3.0",
"string-progressbar": "^1.0.4",
"ts-trueskill": "^3.1.0"
}
}