-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.68 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
58
{
"name": "product-age",
"description": "",
"author": "Benjamin Lannon",
"version": "0.1.0",
"homepage": "",
"license": "",
"main": "app.js",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"chart.js": "^4.4.4",
"dayjs": "^1.11.11",
"dotenv": "^16.4.5",
"less": "~4.2.0",
"roosevelt": "~0.21.16",
"source-configs": "^0.3.6",
"teddy": "~0.6.7"
},
"devDependencies": {
"@eslint/js": "^9.6.0",
"eslint": "^9.6.0",
"eslint-plugin-depend": "^0.8.0",
"eslint-plugin-html": "~8.1.1",
"globals": "^15.8.0",
"nodemon": "~3.1.4",
"postcss-less": "~6.0.0",
"prettier": "^3.3.2",
"stylelint": "~16.6.1",
"stylelint-config-standard": "~36.0.1"
},
"nodemonConfig": {
"ignore": [
"public/",
"jsdoc/"
],
"ext": "less html js json"
},
"private": true,
"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": "npx prettier . --check && npm run stylelint && npm run eslint",
"p": "nodemon app.js --production-mode",
"prod": "nodemon app.js --production-mode",
"eslint": "./node_modules/.bin/eslint .",
"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",
"stylelint": "./node_modules/.bin/stylelint \"statics/css/**/*.less\"",
"test": "npm run lint"
}
}