-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
61 lines (61 loc) · 1.86 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": "nijobs-be",
"version": "1.0.0",
"description": "Back-End for NiJobs website",
"main": "src/index.js",
"type": "module",
"scripts": {
"start": "nodemon src/index.js",
"heroku-start": "cp .env.public.heroku .env && node src/index.js",
"prod": "NODE_ENV=production node src/index.js",
"lint": "eslint src test --max-warnings 0",
"lint-fix": "npm run lint -- --fix",
"test": "NODE_ENV=test jest --runInBand --coverage --verbose false",
"ci": "npm run lint && npm test",
"audit": "npm audit --production --audit-level=high --json | npm-audit-helper --prod-only",
"docs": "npm start --prefix documentation/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NIAEFEUP/nijobs-be.git"
},
"author": "NIAEFEUP",
"license": "GPL-3.0",
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@types/jest": "^29.2.4",
"babel-jest": "^29.3.1",
"babel-plugin-transform-import-meta": "^2.2.0",
"eslint": "^8.29.0",
"jest": "^29.3.1",
"nodemon": "^3.0.1",
"npm-audit-helper": "^3.1.1",
"supertest": "^6.3.3"
},
"dependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.18.9",
"babel": "^6.23.0",
"base64url": "^3.0.1",
"bcrypt": "^5.1.0",
"cloudinary": "^1.32.0",
"dotenv-flow": "^3.2.0",
"express": "^4.18.2",
"express-rate-limit": "^6.7.0",
"express-session": "^1.17.3",
"express-validator": "^6.14.2",
"helmet": "^6.0.1",
"http-status-codes": "^2.2.0",
"jsonwebtoken": "^9.0.0",
"linkedom": "^0.14.21",
"lodash": "^4.17.21",
"mongoose": "^6.8.0",
"mongoose-unique-array": "^0.4.2",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.8.0",
"nodemailer-express-handlebars": "^5.0.0",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"rate-limit-mongo": "^2.3.2"
}
}