-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.59 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
{
"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.4.0",
"cron": "^3.1.7",
"dotenv": "^16.4.5",
"luxon": "^3.5.0",
"pokemontcgsdk": "^2.0.0",
"roosevelt": "~0.23.2",
"tailwindcss": "^3.4.14",
"teddy": "~0.6.14",
"uuid": "^10.0.0"
},
"devDependencies": {
"eslint-plugin-html": "~8.1.2",
"nodemon": "~3.1.7",
"standard": "~17.1.2"
},
"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",
"lint": "npm run standard && npm run stylelint",
"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",
"standard": "./node_modules/.bin/standard",
"start": "nodemon app.js --production-mode",
"stylelint": "./node_modules/.bin/stylelint \"statics/css/**/*.less\"",
"test": "npm run lint"
}
}