forked from cvmanager/backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.47 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
{
"name": "cvmanager",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"test": "jest",
"start": "node bootstrap.js",
"dev": "nodemon bootstrap.js",
"db:seed": "node app/db/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@sentry/node": "^7.14.2",
"@types/jest": "^29.2.0",
"address": "^1.2.2",
"auto-bind": "^5.0.1",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"detect-browser": "^5.3.0",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-jsdoc-swagger": "^1.8.0",
"express-list-endpoints": "^6.0.0",
"express-rate-limit": "^6.6.0",
"express-session": "^1.17.3",
"express-validator": "^6.14.2",
"firebase-admin": "^11.8.0",
"http-status": "^1.5.3",
"i18n": "^0.15.1",
"jsonwebtoken": "^8.5.1",
"mkdirp": "^1.0.4",
"mongoose": "^6.5.2",
"mongoose-delete": "^0.5.4",
"mongoose-paginate-v2": "^1.7.1",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"node-cron": "^3.0.2",
"redis": "^4.3.1",
"sharp": "^0.31.3",
"smsir-js": "^1.3.1",
"systeminformation": "^5.17.1",
"winston": "^3.8.2"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.19.6",
"@faker-js/faker": "^7.6.0",
"jest": "^29.1.2",
"nodemon": "^2.0.19",
"supertest": "^6.3.1"
},
"jest": {
"transformIgnorePatterns": [
"/node_modules/(?!(auto-bind|pify)/)"
]
}
}