-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.95 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.95 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
{
"name": "data-collector",
"version": "2.0.0",
"repository": {
"type": "git",
"url": "https://github.com/schulzetenberg/data-collector.git"
},
"scripts": {
"start": "export NODE_ENV=development || set NODE_ENV=development && nodemon nodejs/server.js",
"precommit": "lint-staged"
},
"author": "Jacob Schulzetenberg <[email protected]>",
"license": "MIT",
"dependencies": {
"@sendgrid/mail": "6.5.2",
"agenda": "4.3.0",
"agendash": "2.1.1",
"bcrypt-nodejs": "0.0.3",
"body-parser": "1.19.0",
"cheerio": "0.22.0",
"cloudinary": "1.23.0",
"compression": "1.7.4",
"connect-assets": "6.0.1",
"connect-mongo": "4.6.0",
"cookie-parser": "1.4.5",
"cors": "2.8.5",
"cron-parser": "2.16.3",
"ejs": "3.1.5",
"errorhandler": "1.5.1",
"express": "4.17.1",
"express-asset-versions": "0.1.2",
"express-session": "1.17.1",
"express-validator": "5.3.1",
"lodash": "4.17.20",
"method-override": "3.0.0",
"moment": "2.27.0",
"mongodb": "4.9.1",
"mongoose": "6.6.0",
"morgan": "1.10.0",
"opml-to-json": "0.0.3",
"passport": "0.4.1",
"passport-local": "1.0.0",
"requestretry": "4.1.1",
"serve-favicon": "2.5.0",
"ssl-root-cas": "1.3.1",
"winston": "2.4.4",
"xml2js": "0.4.23"
},
"devDependencies": {
"@schulzetenberg/eslint-config-node": "^0.0.8",
"chai": "4.2.0",
"eslint": "8.6.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-prettier": "4.0.0",
"husky": "4.3.0",
"lint-staged": "10.3.0",
"nodemon": "2.0.4",
"prettier": "2.5.1",
"supertest": "4.0.2",
"supertest-session": "4.1.0"
},
"lint-staged": {
"*.js": [
"prettier --write",
"./node_modules/.bin/eslint"
]
},
"husky": {
"hooks": {
"pre-commit": "npx lint-staged"
}
},
"main": "./nodejs/server.js"
}