-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·62 lines (62 loc) · 1.77 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
58
59
60
61
62
{
"name": "good-jobs",
"version": "1.0.0",
"description": "Good Jobs",
"main": "server.js",
"author": "Phat (Minh) Dang",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/PhatDang/dev-good-jobs"
},
"scripts": {
"start": "nodemon run server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint ./ --cache --ignore-pattern .gitignore",
"precommit-msg": "echo 'Pre-commit checks...' && exit 0"
},
"pre-commit": [
"precommit-msg",
"lint"
],
"dependencies": {
"autoprefixer": "^9.8.6",
"bcrypt": "^5.0.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"chalk": "^2.4.2",
"connect-flash": "^0.1.1",
"connect-mongo": "^3.2.0",
"cookie-parser": "^1.4.5",
"dotenv": "^8.2.0",
"ejs": "^2.7.4",
"ejs-lint": "^1.1.0",
"express": "^4.17.1",
"express-messages": "^1.0.1",
"express-session": "^1.17.1",
"express-validator": "^5.3.1",
"lodash": "^4.17.20",
"mongoose": "^5.11.8",
"morgan": "^1.10.0",
"node-pre-gyp": "^0.14.0",
"nodemailer": "^6.4.17",
"nodemon": "^2.0.6",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"pg": "^7.18.2",
"rebuild": "^0.1.2",
"session": "^0.1.0",
"url": "^0.11.0"
},
"devDependencies": {
"aws-sdk": "^2.816.0",
"debug": "^4.3.1",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.0",
"husky": "^2.7.0",
"pre-commit": "^1.2.2",
"prettier": "2.1.2"
}
}