This repository has been archived by the owner on Apr 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
56 lines (56 loc) · 1.67 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
{
"name": "@senecacdot/satellite",
"version": "1.26.0",
"description": "A Microservice Framework for Telescope",
"main": "src/index.js",
"scripts": {
"test:watch": "jest --watch",
"test": "jest -c jest.config.js",
"coverage": "jest -c jest.config.js --collect-coverage",
"eslint": "eslint --config .eslintrc.js \"**/*.js\"",
"eslint-fix": "eslint --config .eslintrc.js \"**/*.js\" --fix",
"lint": "pnpm eslint",
"prettier": "prettier --write \"./**/*.{md,jsx,json,html,css,js,yml}\"",
"prettier-check": "prettier --check \"./**/*.{md,jsx,json,html,css,js,yml}\"",
"prepare": "husky install",
"pre-commit": "pretty-quick --staged && pnpm lint"
},
"repository": "Seneca-CDOT/satellite",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/Seneca-CDOT/telescope/issues"
},
"homepage": "https://github.com/Seneca-CDOT/satellite#readme",
"dependencies": {
"@elastic/elasticsearch": "7.17.0",
"@elastic/elasticsearch-mock": "0.3.1",
"@godaddy/terminus": "4.10.2",
"cors": "2.8.5",
"express": "4.17.3",
"express-jwt": "6.1.1",
"helmet": "5.0.2",
"http-errors": "2.0.0",
"ioredis": "4.28.5",
"ioredis-mock": "7.1.0",
"jsonwebtoken": "8.5.1",
"node-fetch": "2.6.7",
"pino": "7.8.0",
"pino-http": "6.6.0",
"pino-pretty": "7.5.3"
},
"engines": {
"node": ">=14.0.0",
"pnpm": ">=6"
},
"devDependencies": {
"eslint": "8.10.0",
"eslint-plugin-anti-trojan-source": "1.1.0",
"eslint-plugin-jest": "26.1.1",
"get-port": "5.1.1",
"husky": "7.0.4",
"jest": "27.5.1",
"nock": "13.2.4",
"prettier": "2.5.1",
"pretty-quick": "3.1.3"
}
}