-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.06 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.06 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
{
"name": "NotebookDB",
"version": "1.0.0",
"description": "Database for managing Student and staff notebooks",
"main": "app.js",
"scripts": {
"start": "nodemon server.js",
"start:prod": "SET NODE_ENV=production&&nodemon server.js",
"start:dev": "SET NODE_ENV=development&&nodemon server.js",
"build": "npm install",
"debug": "node --inspect server.js",
"watch:js": "parcel watch ./public/js/index.js --dist-dir ./public/js --no-content-hash",
"build:js": "parcel build ./public/js/index.js --dist-dir ./public/js --no-content-hash"
},
"author": "John Thompson",
"license": "ISC",
"dependencies": {
"axios": "^1.12.2",
"bcryptjs": "^3.0.2",
"compression": "^1.8.1",
"cookie-parser": "^1.4.7",
"core-js": "^3.45.1",
"cors": "^2.8.5",
"csv": "^6.4.1",
"csv-parse": "^6.1.0",
"dotenv": "^17.2.2",
"express": "^5.1.0",
"express-handlebars": "8.0.1",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^8.1.0",
"handlebars": "^4.7.8",
"helmet": "^8.1.0",
"hpp": "^0.2.3",
"puppeteer": "^24.10.2",
"html-to-text": "^9.0.5",
"jsonwebtoken": "^9.0.2",
"method-override": "^3.0.0",
"moment": "^2.30.1",
"morgan": "^1.10.1",
"multer": "^2.0.2",
"mysql": "^2.18.1",
"node-cron": "^4.2.1",
"nodemailer": "^7.0.6",
"papaparse": "^5.5.3",
"pdf-to-printer": "^5.6.0",
"sequelize": "^6.37.7",
"sharp": "^0.34.4",
"slugify": "^1.6.6",
"stripe": "^18.5.0",
"tedious": "^18.6.1",
"unix-print": "^1.3.2",
"validator": "^13.15.15"
},
"devDependencies": {
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"jest": "^30.1.3",
"nodemon": "^3.1.10",
"parcel": "^2.12.0",
"prettier": "^3.6.2",
"sequelize-cli": "^6.6.3"
},
"engines": {
"node": ">=18"
}
}