-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.59 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": "group-project-557start-backend",
"version": "1.0.0",
"description": "Backend of CIS5570 Group Project",
"main": "index.js",
"scripts": {
"start": "node server.js",
"test": "jest --coverage --watchAll=true",
"lint": "./node_modules/.bin/eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TomGoh/group-project-557start-backend.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/TomGoh/group-project-557start-backend/issues"
},
"homepage": "https://github.com/TomGoh/group-project-557start-backend#readme",
"dependencies": {
"@aws-sdk/client-s3": "^3.441.0",
"@aws-sdk/lib-storage": "^3.300.0",
"@faker-js/faker": "^8.2.0",
"axios": "^1.6.0",
"bcrypt": "^5.1.1",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jest": "^29.7.0",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.2.0",
"mongoose": "^8.0.0",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"multer-s3": "^3.0.1",
"redis": "^4.6.11",
"winston": "^3.11.0"
},
"devDependencies": {
"eslint": "^8.52.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"supertest": "^6.3.3"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/tests/",
"/dbUtils/dbFunctions.js",
"/utils/RedisLite.js"
]
}
}