-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 2.55 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 2.55 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "app",
"version": "0.0.0",
"private": true,
"scripts": {
"heroku-postbuild": "cd client && npm install && npm run build",
"lint": "eslint .",
"lint-watch": "onchange \"**/*\" -- eslint {{changed}}",
"pp": "prettier --write --ignore-unknown .",
"pp-watch": "onchange \"**/*\" -- prettier --write --ignore-unknown {{changed}}",
"start": "nodemon -L -V --ignore ./client --ignore ./migrations --ignore ./public ./bin/www",
"test": "mocha --recursive"
},
"dependencies": {
"aws-sdk": "^2.931.0",
"bcrypt": "^5.0.1",
"cookie-session": "^1.4.0",
"debug": "~4.3.1",
"dotenv": "^10.0.0",
"ejs": "^3.1.6",
"email-templates": "^8.0.7",
"express": "^4.18.1",
"express-fileupload": "^1.2.1",
"fs-extra": "^10.0.0",
"http-errors": "~1.8.0",
"http-status-codes": "^2.1.4",
"i18n": "^0.13.3",
"inflection": "^1.13.2",
"jquery": "^3.6.0",
"lodash": "^4.17.21",
"luxon": "^1.27.0",
"mime-types": "^2.1.31",
"morgan": "~1.10.0",
"mv": "^2.1.1",
"nodemailer-mock": "^1.5.11",
"nodemon": "^2.0.7",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"pg": "^8.6.0",
"sequelize": "^6.20.1",
"sequelize-cli": "^6.4.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"cross-env": "~7.0.3",
"del-cli": "^4.0.0",
"eslint": "^7.28.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-mocha": "^9.0.0",
"foreman": "^3.0.1",
"mocha": "^9.0.0",
"onchange": "^7.1.0",
"prettier": "^2.3.1",
"sequelize-fixtures": "^1.2.0",
"supertest": "^6.1.3",
"supertest-session": "^4.1.0"
},
"engines": {
"node": "16.15.0"
},
"eslintConfig": {
"extends": [
"airbnb-base",
"plugin:mocha/recommended",
"prettier"
],
"parserOptions": {
"ecmaVersion": 2020
},
"plugins": [
"import",
"mocha"
],
"rules": {
"mocha/no-mocha-arrows": [
"off"
],
"no-underscore-dangle": [
"error",
{
"allowAfterThis": true
}
],
"no-unused-vars": [
"error",
{
"argsIgnorePattern": "Sequelize|queryInterface"
}
],
"no-param-reassign": [
"error",
{
"props": false
}
]
},
"ignorePatterns": [
"build",
"client",
"node_modules"
]
},
"prettier": {
"jsxBracketSameLine": true,
"printWidth": 140,
"singleQuote": true
}
}