-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.94 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.94 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "knii_ticketing",
"version": "2.4.0",
"description": "A professional ticketing system with department/desk tracking, public submission and admin management",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"prod": "pm2 start ecosystem.config.js --env production",
"prod:stop": "pm2 stop ticketing-system",
"prod:restart": "pm2 restart ticketing-system",
"prod:logs": "pm2 logs ticketing-system",
"prod:monitor": "pm2 monit",
"init-db": "node scripts/init-db.js",
"seed-admin": "node scripts/seed-admin.js",
"seed:hospital": "node scripts/seed-hospital-data.js",
"seed:sample": "node scripts/seed-sample-data.js",
"build:css": "tailwindcss -i ./public/css/input.css -o ./public/css/output.css --minify",
"watch:css": "tailwindcss -i ./public/css/input.css -o ./public/css/output.css --watch",
"tokens:generate": "node scripts/generateCssTokens.js",
"version-check": "node scripts/check-version-consistency.js",
"pretest": "node scripts/check-version-consistency.js",
"test": "jest --runInBand",
"test:unit": "jest tests/unit --runInBand",
"test:integration": "jest tests/integration --runInBand",
"test:watch": "jest --watch --runInBand",
"test:coverage": "jest --runInBand --coverage",
"test:coverage:html": "jest --runInBand --coverage && open coverage/lcov-report/index.html 2>/dev/null || echo 'Open coverage/lcov-report/index.html in your browser'",
"bench": "node tests/performance/run-all.js",
"bench:auth": "node tests/performance/authentication.bench.js",
"bench:tickets": "node tests/performance/ticketOperations.bench.js",
"bench:comments": "node tests/performance/commentOperations.bench.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"keywords": [
"ticketing",
"support",
"express"
],
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"connect-flash": "^0.1.1",
"connect-pg-simple": "^9.0.1",
"cookie-parser": "^1.4.7",
"csrf-csrf": "^4.0.3",
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"express": "^5.2.1",
"express-rate-limit": "^8.2.1",
"express-session": "^1.17.3",
"express-validator": "^7.0.1",
"helmet": "^7.1.0",
"i18next": "^23.16.4",
"i18next-fs-backend": "^2.6.0",
"i18next-http-middleware": "^3.6.0",
"morgan": "^1.10.0",
"pg": "^8.11.3",
"pm2": "^5.3.0",
"winston": "^3.19.0"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"autocannon": "^7.10.0",
"autoprefixer": "^10.4.17",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^30.2.0",
"memorystore": "^1.6.1",
"node-mocks-http": "^1.17.2",
"nodemon": "^3.0.2",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"supertest": "^7.1.4",
"tailwindcss": "^3.4.1"
}
}