This repository has been archived by the owner on Aug 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
105 lines (105 loc) · 3.44 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
{
"name": "@stolostron/console-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "ts-node-dev --no-notify --no-deps --respawn --transpile-only src",
"start:production": "cross-env NODE_ENV=production node ./build/src",
"start:test": "cross-env NODE_ENV=test MOCK=true node ./build/src",
"start:development": "cross-env NODE_ENV=development node ./build/src",
"start:debug": "cross-env NODE_ENV=development node --inspect ./build/src",
"build": "npm run clean && tsc && cp config/*.json build/config",
"build:production": "npm run build",
"clean": "rimraf build",
"shrinkwrap:clean": "del-cli node_modules npm-shrinkwrap.json && npm install --no-optional && npm prune && npm shrinkwrap",
"lint": "eslint --ext .js --ext .ts ./src",
"lint:fix": "eslint --ext .js --ext .ts --fix ./src",
"watch": "npm run start",
"test": "npm run clean && jest --verbose",
"test:update-snapshot": "jest --updateSnapshot",
"test:watch": "jest --watch",
"update": "rm -rf package-lock.json node_modules && npx npm-check-updates -u && npm install && npm audit fix && npm dedup && npm test && npm run lint"
},
"repository": {
"type": "git",
"url": "[email protected]:stolostron/console-api.git"
},
"author": "",
"license": "SEE LICENSE IN LICENSE",
"husky": {
"hooks": {
"pre-push": "npm run test -- -o && npm run lint"
}
},
"dependencies": {
"@octokit/rest": "^18.0.12",
"@stolostron/security-middleware": "^1.0.5",
"apollo-errors": "^1.9.0",
"apollo-server-express": "^2.19.1",
"atob": "^2.1.2",
"body-parser": "^1.19.0",
"casual": "^1.6.2",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"cross-env": "^7.0.3",
"express": "^4.17.1",
"flat": "^5.0.2",
"graphql": "^15.4.0",
"graphql-type-json": "^0.3.2",
"helmet": "^4.2.0",
"https-proxy-agent": "^5.0.0",
"js-yaml": "^3.14.1",
"jws": "^4.0.0",
"lodash": "^4.17.21",
"log4js": "^6.3.0",
"lru-cache": "^6.0.0",
"moment": "^2.29.1",
"morgan": "^1.10.0",
"nconf": "^0.11.3",
"nocache": "^2.1.0",
"request": "^2.88.2",
"requestretry": "^4.1.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/compression": "^1.7.0",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.9",
"@types/flat": "^5.0.1",
"@types/graphql": "^14.5.0",
"@types/graphql-type-json": "^0.3.2",
"@types/helmet": "0.0.48",
"@types/jest": "^26.0.19",
"@types/js-yaml": "^3.12.5",
"@types/jws": "^3.2.2",
"@types/lodash": "^4.14.165",
"@types/log4js": "^2.3.5",
"@types/lru-cache": "^5.1.0",
"@types/moment": "^2.13.0",
"@types/nconf": "^0.10.0",
"@types/node": "^14.14.14",
"@types/request": "^2.48.5",
"@types/requestretry": "^1.12.7",
"@types/supertest": "^2.0.10",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"eslint": "^7.15.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"husky": "^4.3.6",
"jest": "^26.6.3",
"jest-sonar-reporter": "^2.0.0",
"jest-tap-reporter": "^1.9.0",
"nock": "^13.0.5",
"rimraf": "^3.0.2",
"supertest": "^6.0.1",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.8",
"typescript": "^4.1.3"
}
}