-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 936 Bytes
/
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
{
"name": "techdegree-fullstackjs-course-review-rest-api",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"pretest": "mongod --config etc/mongod.conf",
"test": "node_modules/.bin/mocha --exit --no-warnings",
"posttest": "mongo admin --eval 'db.shutdownServer()'",
"prestart": "mongod --config etc/mongod.conf",
"start": "node --inspect ./index.js localhost 5000",
"stop": "mongo admin --eval 'db.shutdownServer()'",
"runMongod": "mongod --config etc/mongod.conf",
"cleanDb": "node ./src/seed-data/cleanDb.js"
},
"author": "Daniel Perez",
"license": "MIT",
"devDependencies": {
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"i": "^0.3.6",
"mocha": "^8.1.3",
"supertest": "^4.0.2",
"validator": "^13.1.1"
},
"dependencies": {
"express": "^4.17.1",
"mongoose": "^5.10.3",
"morgan": "^1.10.0"
}
}