-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.41 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
{
"name": "seng3011_geeksforhds",
"version": "1.0.0",
"description": "SENG3011 project",
"main": "index.js",
"scripts": {
"start": "nodemon src/index.js",
"dev": "nodemon src/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/samztz/SENG3011_GeeksForHDs.git"
},
"_moduleAliases": {
"@root": ".",
"@models/*": "src/models/*",
"@config/*": "src/config/*",
"@routes/*": "src/routes/*",
"@services/*": "src/services/*",
"@controllers/*": "src/controllers/*",
"@utils/*": "src/utils/*"
},
"_moduleDirectories": [
"node_modules_custom"
],
"author": "",
"license": "ISC",
"type": "module",
"bugs": {
"url": "https://github.com/samztz/SENG3011_GeeksForHDs/issues"
},
"homepage": "https://github.com/samztz/SENG3011_GeeksForHDs#readme",
"dependencies": {
"@mozilla/readability": "^0.4.2",
"chromium": "^3.0.3",
"chrono-node": "^2.3.8",
"cors": "^2.8.5",
"country-in-text-detector": "^1.0.10",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"jsdom": "^19.0.0",
"module-alias": "^2.2.2",
"mongoose": "^6.2.9",
"morgan": "^1.10.0",
"puppeteer": "^13.4.0",
"puppeteer-cluster": "^0.23.0",
"swagger-jsdoc": "^6.1.0",
"swagger-ui-express": "^4.3.0",
"winston": "^3.6.0"
},
"devDependencies": {
"nodemon": "^2.0.15"
}
}