generated from TechLadies/nodejs-backend-starterkit
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
78 lines (78 loc) · 2.34 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "esg-events-api",
"version": "0.0.0",
"engines": {
"node": "14.15"
},
"scripts": {
"start": "NODE_ENV=production node ./bin/www",
"dev": "NODE_ENV=development PORT=3001 DEBUG=app:* nodemon --ignore '*.test.js' --watch src bin/www",
"test": "jest",
"test:watch": "jest --watch",
"jsfmt": "eslint \"src/**/*.js\" --fix",
"jslint": "eslint \"src/**/*.js\"",
"harvest:groups": "node src/tasks/harvest_groups.js",
"harvest:events": "node src/tasks/harvest_events.js",
"harvest:events:worker": "node src/tasks/harvest_event_worker.js",
"telegrambot": "node -e 'require(\"./src/tasks/telegram_worker.js\").push()'",
"scratch": "node src/tasks/scratch.js",
"db:create": "./node_modules/.bin/sequelize db:create",
"db:migrate": "./node_modules/.bin/sequelize db:migrate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/engineersftw/events-api.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/engineersftw/events-api/issues"
},
"homepage": "https://github.com/engineersftw/events-api#readme",
"dependencies": {
"@sentry/node": "^5.7.1",
"apollo-server-express": "^2.14.2",
"axios": "^0.21.1",
"bull": "^3.10.0",
"bull-arena": "^2.6.3",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^8.0.0",
"express": "~4.16.1",
"graphql": "^15.5.1",
"graphql-import": "^0.7.1",
"html-to-text": "^5.1.1",
"http-auth": "^3.2.3",
"ical-generator": "^1.7.2",
"jsdom": "^19.0.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.24.0",
"moment-timezone": "^0.5.26",
"morgan": "~1.9.1",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"pg": "^8.7.1",
"pg-hstore": "^2.3.3",
"rss-parser": "^3.12.0",
"sequelize": "^5.19.0",
"sequelize-cli": "^5.5.0",
"throng": "^4.0.0",
"turndown": "^7.1.1",
"uuid": "^3.3.3",
"website-scraper": "^4.2.3"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"eslint": "^6.1.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.14.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^27.5.1",
"nock": "^10.0.6",
"nodemon": "^1.19.1"
}
}