-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 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
56
57
{
"name": "infra-authentication-server",
"scripts": {
"start": "nodemon src/startServer.js"
},
"repository": {
"type": "git",
"url": "https://github.com/hack4impact-uiuc/infra-authentication-server.git"
},
"license": "MIT",
"dependencies": {
"@sendgrid/mail": "^6.3.1",
"bcrypt": "3.0.0",
"body-parser": "^1.18.3",
"chai": "^4.2.0",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"eslint": "^5.15.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"express": "^4.16.4",
"express-jwt": "^5.3.1",
"express-validator": "^5.3.1",
"googleapis": "27",
"js-yaml": "^3.12.1",
"jsonwebtoken": "^8.5.0",
"jwt-decode": "^2.2.0",
"mocha": "^6.0.2",
"mongoose": "5.4.*",
"morgan": "^1.9.1",
"node-fetch": "^2.3.0",
"node-pre-gyp": "^0.12.0",
"nodemailer": "^5.1.1",
"nodemon": "^1.18.10",
"prettier": "^1.17.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"supertest": "^3.4.2",
"typescript": "^3.4.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint",
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"husky": "^1.3.1",
"lint-staged": "^8.1.4"
}
}