forked from Seneca-CDOT/telescope
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
137 lines (137 loc) · 5.06 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
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "@senecacdot/telescope",
"private": true,
"version": "2.0.0",
"description": "A tool for tracking blogs in orbit around Seneca's open source involvement",
"bin": {
"html-elements": "tools/html-elements.js"
},
"scripts": {
"api:start": "docker-compose -f ./src/api/docker-compose-api.yml up --build -d",
"api:stop": "docker-compose -f ./src/api/docker-compose-api.yml down",
"install:auth-service": "cd src/api/auth && npm install",
"install:image-service": "cd src/api/image && npm install",
"install:users-service": "cd src/api/users && npm install",
"install:posts-service": "cd src/api/posts && npm install",
"install:search-service": "cd src/api/search && npm install",
"install:feed-discovery-service": "cd src/api/feed-discovery && npm install",
"install:parser-service": "cd src/api/parser && npm install",
"install:autodeployment": "cd tools/autodeployment && npm install",
"install:next": "cd src/web && npm install",
"build": "npm run build --prefix src/web --",
"dev": "npm run dev --prefix src/web --",
"develop": "npm run dev",
"eslint": "eslint --config .eslintrc.js",
"eslint-fix": "eslint --config .eslintrc.js --fix",
"lint": "npm run eslint",
"postinstall": "run-s install:*",
"prettier": "prettier --write \"./**/*.{md,jsx,json,html,css,js,yml}\"",
"prettier-check": "prettier --check \"./**/*.{md,jsx,json,html,css,js,yml}\"",
"pretest": "npm run lint",
"test": "npm run jest",
"jest": "cross-env NODE_ENV=test LOG_LEVEL=error MOCK_REDIS=1 FEED_URL_INTERVAL_MS=200 jest -c jest.config.js --",
"jest:e2e": "jest -c jest.config.e2e.js --",
"coverage": "cross-env NODE_ENV=test LOG_LEVEL=silent MOCK_REDIS=1 FEED_URL_INTERVAL_MS=200 jest -c jest.config.js --collectCoverage --",
"jest-watch": "cross-env MOCK_REDIS=1 jest -c jest.config.js --watch --",
"jest-update": "cross-env MOCK_REDIS=1 jest -c jest.config.js --updateSnapshot --",
"jest:e2e-watch": "jest -c jest.config.e2e.js --watch --",
"start": "node src/backend",
"server": "node src/backend/web/server",
"test-ci": "run-s prettier-check test",
"pre-commit": "pretty-quick --staged",
"postversion": "git push upstream master --tags",
"services:start": "node bin/services-start.js --",
"services:stop": "node bin/services-stop.js",
"services:logs": "node bin/services-logs.js --",
"services:clean": "node bin/services-clean.js",
"prepare": "husky install"
},
"repository": "Seneca-CDOT/telescope",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/Seneca-CDOT/telescope/issues"
},
"homepage": "https://github.com/Seneca-CDOT/telescope#readme",
"dependencies": {
"@elastic/elasticsearch": "7.11.0",
"@elastic/elasticsearch-mock": "0.3.0",
"@wordpress/wordcount": "2.15.0",
"body-parser": "1.19.0",
"bull": "3.20.1",
"bull-board": "1.4.2",
"clean-whitespace": "0.1.2",
"connect-redis": "5.1.0",
"cors": "2.8.5",
"date-fns": "2.19.0",
"docker-compose": "0.23.6",
"dotenv": "8.2.0",
"entities": "2.2.0",
"express": "4.17.1",
"express-handlebars": "5.3.0",
"express-healthcheck": "0.1.0",
"express-pino-logger": "6.0.0",
"express-session": "1.17.1",
"express-validator": "6.10.0",
"feed": "4.2.2",
"git-repo-info": "2.1.1",
"helmet": "4.4.1",
"highlight.js": "10.6.0",
"http-proxy-middleware": "1.0.6",
"ioredis": "4.26.0",
"ioredis-mock": "5.5.5",
"jsdom": "16.5.1",
"node-fetch": "2.6.1",
"normalize-url": "5.3.0",
"opml-generator": "1.1.1",
"passport": "0.4.1",
"passport-saml": "2.0.5",
"pino": "6.11.2",
"pino-elasticsearch": "5.4.0",
"pino-pretty": "4.7.1",
"rss-parser": "3.12.0",
"sanitize-html": "2.3.2",
"set-interval-async": "2.0.3",
"stoppable": "1.1.0",
"valid-url": "1.0.9"
},
"devDependencies": {
"@babel/core": "7.14.3",
"@babel/plugin-transform-runtime": "7.13.15",
"@babel/preset-env": "7.13.15",
"@babel/preset-react": "7.13.13",
"@babel/preset-typescript": "7.13.0",
"@types/jest": "26.0.20",
"@typescript-eslint/eslint-plugin": "4.17.0",
"@typescript-eslint/parser": "4.17.0",
"@vercel/node": "1.9.1",
"babel-jest": "26.6.3",
"babel-preset-next": "1.4.0",
"cross-env": "7.0.3",
"eslint": "7.23.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest-playwright": "0.2.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-promise": "5.1.0",
"eslint-plugin-react": "7.22.0",
"eslint-plugin-react-hooks": "4.2.0",
"fast-xml-parser": "3.19.0",
"husky": "5.1.3",
"jest": "26.6.3",
"jest-fetch-mock": "3.0.3",
"jest-playwright-preset": "1.5.2",
"nock": "13.0.11",
"npm-run-all": "4.1.5",
"playwright": "1.11.0",
"prettier": "2.2.1",
"pretty-quick": "3.1.0",
"run.env": "1.1.0",
"supertest": "6.1.3",
"ts-jest": "26.5.4"
},
"engines": {
"node": ">=12.0.0"
}
}