-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.3 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
{
"name": "pkmn-tcg-app",
"description": "",
"author": "",
"version": "1.0.0",
"homepage": "",
"license": "MIT",
"main": "app.js",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"better-sqlite3": "^11.5.0",
"cron": "^3.2.1",
"dotenv": "^16.4.5",
"luxon": "^3.5.0",
"pokemontcgsdk": "^2.0.0",
"roosevelt": "~0.23.2",
"tailwindcss": "^3.4.15",
"teddy": "~0.6.19"
},
"devDependencies": {
"nodemon": "~3.1.7"
},
"nodemonConfig": {
"ignore": [
"public/",
"scripts"
],
"ext": "html js json css"
},
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/lannonbr/pkmn-tcg-app.git"
},
"scripts": {
"audit-config": "node ./node_modules/roosevelt/lib/scripts/configAuditor.js",
"d": "nodemon app.js --development-mode",
"dev": "nodemon app.js --development-mode",
"development": "nodemon app.js --development-mode",
"p": "nodemon app.js --production-mode",
"prod": "nodemon app.js --production-mode",
"production": "nodemon app.js --production-mode",
"x": "nodemon app.js --production-proxy-mode",
"prodproxy": "nodemon app.js --production-proxy-mode",
"production-proxy": "nodemon app.js --production-proxy-mode",
"start": "nodemon app.js --production-mode"
}
}