forked from Seneca-CDOT/telescope
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
143 lines (143 loc) · 4.81 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
138
139
140
141
142
143
{
"name": "@seneca/telescope",
"private": true,
"version": "1.4.0",
"description": "A tool for tracking blogs in orbit around Seneca's open source involvement",
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/",
"<rootDir>/src/frontend/gatsby/public/",
"<rootDir>/src/frontend/gatsby/.cache/",
"<rootDir>/src/frontend/gatsby/test/"
],
"automock": false,
"setupFiles": [
"./test/lib/setupJest.js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"<rootDir>/src/frontend/gatsby/public/",
"<rootDir>/src/frontend/gatsby/.cache/",
"<rootDir>/src/frontend/gatsby/test/"
]
},
"bin": {
"add-feed": "./tools/add-feed.js",
"html-elements": "./tools/html-elements.js"
},
"scripts": {
"install:autodeployment": "cd tools/autodeployment && npm install",
"install:next": "cd src/frontend/next && npm install",
"install:gatsby": "cd src/frontend/gatsby && npm install",
"build:gatsby": "npm run build --prefix src/frontend/gatsby --",
"develop:gatsby": "npm run develop --prefix src/frontend/gatsby --",
"serve:gatsby": "npm run serve --prefix src/frontend/gatsby --",
"clean:gatsby": "npm run clean --prefix src/frontend/gatsby --",
"build:next": "npm run build --prefix src/frontend/next --",
"develop:next": "npm run dev --prefix src/frontend/next --",
"serve:next": "npm run start --prefix src/frontend/next --",
"build": "npm run build:gatsby",
"develop": "npm run develop:gatsby",
"serve": "npm run serve:gatsby",
"clean": "npm run clean:gatsby",
"eslint": "eslint .",
"eslint-fix": "eslint --fix .",
"lint": "npm run eslint",
"postinstall": "run-s install:gatsby install:next install:autodeployment",
"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-frontend:gatsby": "cd src/frontend/gatsby/test && jest",
"test-frontend": "npm run test-frontend:gatsby",
"test": "npm run jest",
"jest": "cross-env NODE_ENV=test LOG_LEVEL=error MOCK_REDIS=1 FEED_URL_INTERVAL_MS=200 jest --",
"coverage": "cross-env NODE_ENV=test LOG_LEVEL=silent MOCK_REDIS=1 FEED_URL_INTERVAL_MS=200 jest --collectCoverage --",
"jest-watch": "cross-env MOCK_REDIS=1 jest --watch --",
"start": "node src/backend",
"server": "node src/backend/web/server",
"test-ci": "run-s prettier-check test",
"now-build": "npm run build",
"release": "run.env release-it --"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"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.9.0",
"@elastic/elasticsearch-mock": "0.3.0",
"@wordpress/wordcount": "2.11.0",
"body-parser": "1.19.0",
"bull": "3.18.0",
"bull-board": "0.9.0",
"connect-redis": "5.0.0",
"cors": "2.8.5",
"date-fns": "2.16.1",
"dotenv": "8.2.0",
"entities": "2.1.0",
"express": "4.17.1",
"express-handlebars": "5.1.0",
"express-healthcheck": "0.1.0",
"express-pino-logger": "5.0.0",
"express-session": "1.17.1",
"express-validator": "6.6.1",
"feed": "4.2.1",
"feedparser-promised": "2.0.1",
"git-repo-info": "2.1.1",
"helmet": "4.1.1",
"highlight.js": "10.4.1",
"http-proxy-middleware": "1.0.5",
"ioredis": "4.17.3",
"ioredis-mock": "5.1.0",
"jsdom": "16.4.0",
"node-fetch": "2.6.1",
"normalize-url": "5.1.0",
"opml-generator": "1.1.1",
"passport": "0.4.1",
"passport-saml": "2.0.2",
"pino": "6.6.1",
"pino-elasticsearch": "5.3.0",
"pino-pretty": "4.2.1",
"sanitize-html": "1.27.4",
"set-interval-async": "1.0.33",
"stoppable": "1.1.0",
"valid-url": "1.0.9"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "4.8.1",
"@typescript-eslint/parser": "4.8.1",
"@vercel/node": "1.8.2",
"cross-env": "7.0.2",
"eslint": "7.14.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-react": "7.21.5",
"eslint-plugin-react-hooks": "4.2.0",
"fast-xml-parser": "3.17.4",
"husky": "4.3.0",
"jest": "26.4.2",
"jest-fetch-mock": "3.0.3",
"nock": "13.0.4",
"npm-run-all": "4.1.5",
"prettier": "2.1.2",
"pretty-quick": "3.0.2",
"release-it": "14.0.3",
"run.env": "1.1.0",
"supertest": "4.0.2"
},
"engines": {
"node": ">=10.0.0"
}
}