-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.22 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.22 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
52
53
{
"name": "backend",
"jest": {
"testEnvironment": "node",
"collectCoverage": true,
"coverageReporters": [
"json",
"html"
]
},
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node bin/www",
"dev": "nodemon --exec 'npm run lint && node' bin/www",
"test": "NODE_ENV=test jest --coverage --detectOpenHandles --forceExit",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git@gitlab.com:glints-academy-5/Team-A/backend.git"
},
"author": "",
"license": "ISC",
"dependencies": {
"@sendgrid/mail": "^6.5.4",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"faker": "^4.1.0",
"imagekit": "^3.0.4",
"jest": "^25.1.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.3",
"mongoose-paginate-v2": "^1.3.6",
"morgan": "^1.9.1",
"multer": "^1.4.2",
"nodemon": "^2.0.2",
"nyc": "^15.0.0",
"pug": "^2.0.4",
"sequelize": "^5.21.5",
"social-share": "^0.1.0",
"supertest": "^4.0.2",
"swagger-ui-express": "^4.1.3"
},
"devDependencies": {
"eslint": "^6.8.0",
"sequelize-cli": "^5.5.1"
}
}