-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 924 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 924 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
25
26
27
28
29
30
31
32
33
34
{
"name": "deck-lotus",
"version": "1.0.0",
"description": "Self-hosted MTG deck builder with multi-user support",
"main": "src/server.js",
"type": "module",
"scripts": {
"start": "node src/server.js",
"dev": "nodemon src/server.js",
"import-cards": "node scripts/import-mtgjson.js",
"init-db": "node scripts/init-db.js",
"client:dev": "cd client && npm run dev",
"client:build": "cd client && npm run build"
},
"keywords": ["mtg", "magic the gathering", "deck builder"],
"author": "",
"license": "MIT",
"dependencies": {
"express": "^4.18.2",
"better-sqlite3": "^9.2.2",
"bcrypt": "^5.1.1",
"jsonwebtoken": "^9.0.2",
"crypto": "^1.0.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"helmet": "^7.1.0",
"express-rate-limit": "^7.1.5",
"dotenv": "^16.3.1",
"node-cron": "^3.0.3"
},
"devDependencies": {
"nodemon": "^3.0.2"
}
}