-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 961 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
33
34
{
"name": "w07-mongoose-db",
"version": "0.1.0",
"description": "Coursework Submission for Week 07 of CodeNation Master Software Development course.",
"main": "src/server.js",
"scripts": {
"test": "env-cmd -f ./config/test.env jest --watchAll",
"monitor": "env-cmd -f ./config/dev.env nodemon src/server.js",
"start": "env-cmd -f ./config/dev.env node src/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PCM-M46-CodeNation/W07-Mongoose-DB.git"
},
"keywords": [
"codenation",
"mongoose",
"crud",
"cqrs",
"coursework"
],
"author": "Peter C. Matthews",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/PCM-M46-CodeNation/W07-Mongoose-DB/issues"
},
"homepage": "https://github.com/PCM-M46-CodeNation/W07-Mongoose-DB#readme",
"dependencies": {
"dotenv": "^16.0.3",
"express": "^4.18.2",
"jest": "^29.5.0",
"mongoose": "^7.0.3"
}
}