-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.36 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.36 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
47
48
49
50
51
52
53
54
{
"name": "dating-app",
"version": "1.0.0",
"description": "Dating app for project Tech",
"main": "index.js",
"scripts": {
"test": "nodemon index.js",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Roene/Dating-app-team.git"
},
"keywords": [
"NodeJS"
],
"author": "Roene Verbeek, Jelmer Lubberts, Andres Pinto",
"license": "MIT",
"bugs": {
"url": "https://github.com/Roene/Dating-app-team/issues"
},
"homepage": "https://github.com/Roene/Dating-app-team#readme",
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"nodemon": "^2.0.2"
},
"dependencies": {
"axios": "^0.19.2",
"bcrypt": "^4.0.1",
"body-parser": "^1.19.0",
"connect-flash": "^0.1.1",
"dotenv": "^8.2.0",
"ejs": "^3.0.1",
"express": "^4.17.1",
"express-ejs-layouts": "^2.5.0",
"express-rate-limit": "^5.1.1",
"express-session": "^1.17.0",
"helmet": "^3.22.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.5",
"multer": "^1.4.2",
"multer-google-storage": "^1.3.0",
"rate-limit": "^0.1.1",
"validator": "^13.0.0"
},
"nodemonConfig": {
"ignore": "api/*.json"
}
}