-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.27 KB
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": "backendteam_b",
"engines": {
"node": "16.12.0",
"npm": "8.1.0"
},
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "NODE_ENV=development npx nodemon index",
"test": "jest --testTimeout=10000 --coverage --forceExit --verbose"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
},
"repository": {
"type": "git",
"url": "git+ssh://git@gitlab.com/binarxglints_batch15/miniproject/team-b/backendteam_b.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://gitlab.com/binarxglints_batch15/miniproject/team-b/backendteam_b/issues"
},
"homepage": "https://gitlab.com/binarxglints_batch15/miniproject/team-b/backendteam_b#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"cloudinary": "^1.27.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-fileupload": "^1.2.1",
"faker": "^5.5.3",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"pg": "^8.7.1",
"sequelize": "^6.9.0",
"sequelize-cli": "^6.3.0",
"validator": "^13.7.0"
},
"devDependencies": {
"jest": "^27.3.1",
"nodemon": "^2.0.15",
"supertest": "^6.1.6"
}
}