-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.14 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.14 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
{
"name": "sprint1",
"version": "1.0.0",
"description": "sprint1 in Software Project Management Course",
"main": "index.js",
"engines": {
"node": "12.11.1"
},
"scripts": {
"dev": "nodemon src/index.js",
"start": "node index.js",
"test": "mocha Tests/*.spec.js --color",
"lint": "eslint Src/*.js --color"
},
"repository": {
"type": "git",
"url": "git+https://github.com/patrick14796/Sprint1.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/patrick14796/Sprint1/issues"
},
"homepage": "https://github.com/patrick14796/Sprint1#readme",
"dependencies": {
"alert": "^5.0.10",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"ejs": "^3.1.6",
"express": "^4.17.1",
"express-session": "^1.17.1",
"mongo": "^0.1.0",
"mongoose": "^5.12.5",
"morgan": "^1.10.0",
"nodemailer": "^6.6.0"
},
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/mocha": "^8.2.1",
"chai": "^4.3.3",
"eslint": "^7.21.0",
"mocha": "^8.3.1",
"nodemon": "^2.0.7"
}
}