-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.6 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
62
63
{
"name": "profesearch-backend",
"version": "1.2.4",
"description": "Unihack Project ProfeSearch Backend",
"main": "app.js",
"scripts": {
"start": "nodemon server.js",
"start:prod": "set NODE_ENV=production&&nodemon server.js",
"debug": "ndb server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ProfeSearch/Backend.git"
},
"keywords": [
"ProfeSearch",
"Node.js",
"MongoDb"
],
"author": "Yibo Wen, Yuxing Zhou",
"license": "ISC",
"bugs": {
"url": "https://github.com/ProfeSearch/Backend/issues"
},
"homepage": "https://github.com/ProfeSearch/Backend#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-mongo-sanitize": "^2.1.0",
"express-rate-limit": "^5.3.0",
"helmet": "^4.6.0",
"hpp": "^0.2.3",
"html-to-text": "^8.0.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.13.3",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"nodemailer": "^6.6.3",
"nodemon": "^2.0.12",
"pug": "^3.0.2",
"slugify": "^1.6.0",
"validator": "^13.6.0",
"xss-clean": "^0.1.1",
"puppeteer": "1.13.0",
"winston": "3.1.0"
},
"devDependencies": {
"eslint": "^7.31.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"prettier": "^2.3.2"
},
"engines": {
"node": ">=10.0.0"
}
}