forked from rpp30-sdc-1337requests/reviews-service
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 847 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 847 Bytes
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
{
"name": "reviews-service",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"test": "mocha",
"coverage": "nyc --all mocha --exit",
"server": "nodemon server/app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rpp30-sdc-1337requests/reviews-service.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/rpp30-sdc-1337requests/reviews-service/issues"
},
"homepage": "https://github.com/rpp30-sdc-1337requests/reviews-service#readme",
"dependencies": {
"dotenv": "^10.0.0",
"eslint": "^8.0.0",
"express": "^4.17.1",
"mongoose": "^6.0.12",
"nodemon": "^2.0.14"
},
"devDependencies": {
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"mocha": "^9.1.2",
"nyc": "^15.1.0",
"sinon": "^11.1.2"
}
}