-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 776 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 776 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"scripts": {
"prestart": "npm run build",
"start": "node index.js",
"dev": "concurrently --kill-others-on-fail --names api,web --prefix-colors cyan,magenta \"npm:dev:server\" \"npm:dev:client\"",
"dev:server": "node --watch index.js",
"dev:client": "npm --prefix client run dev",
"build": "npm --prefix client run build",
"db:init": "node scripts/initDatabase.js",
"db:verify": "node scripts/verifyDatabase.js",
"db:import-csv": "node scripts/importCsv.js",
"register": "node api/discord/registerCommands.js"
},
"dependencies": {
"cors": "^2.8.5",
"discord-interactions": "^4.4.0",
"dotenv": "^17.2.2",
"express": "^5.2.1",
"mysql2": "^3.15.3"
},
"devDependencies": {
"concurrently": "^10.0.4"
}
}