-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.06 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
{
"name": "contact-list",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node ./bin/www",
"dev": "nodemon ./bin/www",
"test": "jest --runInBand --detectOpenHandles",
"test:watch": "jest --watch"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/alinowrouzii/contact-list.git"
},
"keywords": [
"Nodejs",
"Express",
"Mongoose"
],
"author": "Ali Nowrouzi",
"license": "ISC",
"bugs": {
"url": "https://github.com/alinowrouzii/contact-list/issues"
},
"homepage": "https://github.com/alinowrouzii/contact-list#readme",
"dependencies": {
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"mongoose": "^6.2.3",
"redis": "^4.0.4",
"swagger-ui-express": "^4.3.0",
"winston": "^3.6.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"jest": "^27.5.1",
"supertest": "^6.2.2"
}
}