-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.29 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "gymkhaana",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"devstart": "nodemon index.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/manakpandey/gymkhaana.git"
},
"author": "Manak Pandey, Sagar Pandey",
"license": "ISC",
"bugs": {
"url": "https://github.com/manakpandey/gymkhaana/issues"
},
"homepage": "https://github.com/manakpandey/gymkhaana#readme",
"dependencies": {
"body-parser": "^1.19.0",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.4",
"cookie-session": "^1.4.0",
"ejs": "^3.0.1",
"express": "^4.17.1",
"express-flash-messages": "^0.1.1",
"express-session": "^1.17.0",
"express-validator": "^6.3.1",
"mongoose": "^5.8.9",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"session": "^0.1.0",
"winston": "^3.2.1"
},
"devDependencies": {
"ejs-lint": "^1.0.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.0",
"husky": "^4.2.1",
"nodemon": "^2.0.2",
"pre-commit": "^1.2.2"
}
}