-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.34 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
{
"name": "ucredit-api",
"version": "1.0.0",
"description": "Backend api for UCredit.",
"main": "index.js",
"dependencies": {
"axios": "^1.2.1",
"bcrypt": "^5.1.0",
"body-parser": "^1.20.1",
"compress-json": "^2.1.2",
"cookie-parse": "^0.4.0",
"cors": "^2.8.5",
"crypto-random-string": "^5.0.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-session": "^1.17.3",
"helmet": "^6.0.1",
"jest": "^29.3.1",
"jsonwebtoken": "^9.0.0",
"mongoose": "^6.8.1",
"morgan": "^1.10.0",
"nodemailer": "^6.8.0",
"nodemon": "^2.0.20",
"passport": "^0.6.0",
"passport-saml": "^2.2.0",
"path": "^0.12.7"
},
"scripts": {
"start": "nodemon",
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest tests/routes --runInBand --detectOpenHandles --forceExit",
"prettier": "npx prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/QinyuanWu/uCredit-API.git"
},
"author": "Qinyuan Wu",
"license": "ISC",
"bugs": {
"url": "https://github.com/QinyuanWu/uCredit-API/issues"
},
"homepage": "https://github.com/QinyuanWu/uCredit-API#readme",
"devDependencies": {
"@shelf/jest-mongodb": "^4.1.4",
"@types/jest": "^29.2.4",
"jest": "^29.3.1",
"prettier": "2.8.4",
"supertest": "^6.3.3"
},
"type": "module"
}