forked from nevash-gobin/myAdvisorDev
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
61 lines (61 loc) · 1.9 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
59
60
61
{
"name": "myadvisor",
"version": "1.0.0",
"description": "myAdvisor is an automated self-advising and GPA management system created for the use of the University of the West Indies students.\r It aims to replace the current system of advising to an automated and faster system for greater convenience and efficiency.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"start:dev": "nodemon index.js",
"transcript-parse": "node utilities/parseTranscript.js transcript.pdf",
"heroku-postbuild": "cd myadvisor && npm install && npm run build",
"dev": "node utilities/initialize.js",
"eli": "node controllers/getEligibleCourses.js",
"plan": "node controllers/getCoursePlan.js",
"test": "echo \"Message: no test specified\" && exit 0",
"load-courses": "node utilities/cli_xlsx_parser.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nevash-gobin/myAdvisorDev.git"
},
"keywords": [],
"author": "Hypertext Assassins",
"license": "ISC",
"bugs": {
"url": "https://github.com/nevash-gobin/myAdvisorDev/issues"
},
"homepage": "https://github.com/nevash-gobin/myAdvisorDev#readme",
"engines": {
"node": "20.10.0"
},
"dependencies": {
"axios": "^0.21.1",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^8.6.0",
"express": "^4.19.2",
"express-session": "^1.17.1",
"fs": "^0.0.1-security",
"html-pdf": "^3.0.1",
"jsonwebtoken": "^8.5.1",
"mammoth": "^1.7.1",
"morgan": "^1.10.0",
"multer": "^1.4.4",
"myadvisor": "file:",
"passport": "^0.4.1",
"passport-jwt": "^4.0.1",
"path": "^0.12.7",
"pdf-parse": "^1.1.1",
"pdf2json": "^1.3.1",
"pg": "^8.11.0",
"pg-hstore": "^2.3.3",
"sequelize": "^6.32.0",
"sqlite3": "^5.1.6",
"xlsx": "^0.18.5"
},
"devDependencies": {
"jest": "^29.7.0",
"nodemon": "^2.0.7",
"supertest": "^6.3.4"
}
}