-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.2 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
{
"name": "tekton-log-viewer",
"version": "0.1.0",
"main": "dist/index.js",
"author": "Suraj Keshri",
"license": "UNLICENSED",
"scripts": {
"build": "tsc",
"security:check": "npx check-audit --audit-level high --omit dev",
"security:fix": "npx resolve-audit --audit-level high --omit dev",
"typecheck": "tsc --noEmit",
"lint": "eslint . --ext .ts,.tsx",
"script": "ts-node -r tsconfig-paths/register",
"start": "node -r module-alias/register dist/src/index.js",
"start:watch": "nodemon --watch 'src/**/*.ts' --watch 'src/**/*.graphql' --exec 'ts-node' --transpile-only -r tsconfig-paths/register -r source-map-support/register src/index.ts",
"test": "jest --coverage --runInBand --verbose --forceExit",
"test:watch": "jest --watch --runInBand --verbose",
"prepare": "husky install",
"prettier": "prettier --ignore-path .prettierignore --write --list-different .",
"prettier:check": "prettier --ignore-path .prettierignore --check ."
},
"_moduleAliases": {
"#root": "./dist"
},
"devDependencies": {
"@babel/core": "^7.16.7",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.0",
"@types/morgan": "^1.9.3",
"@types/node": "^17.0.14",
"@types/node-fetch": "^2.6.1",
"@types/stoppable": "^1.1.1",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.10.2",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-no-only-tests": "^2.6.0",
"husky": "^7.0.4",
"jest": "^27.4.5",
"jest-watch-typeahead": "^0.6.5",
"lint-staged": "^12.3.4",
"nodemon": "^2.0.15",
"npm-audit-resolver": "^3.0.0-5",
"prettier": "^2.5.1",
"ts-jest": "^27.1.2",
"ts-node": "^10.9.1",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.4.4"
},
"lint-staged": {
"*.{ts,js,css,json,md}": [
"prettier --write"
],
"*.{js,ts}": [
"eslint --fix"
]
},
"dependencies": {
"@google-cloud/logging": "^10.3.2",
"cors": "^2.8.5",
"express": "^4.17.1",
"module-alias": "^2.2.2",
"morgan": "^1.10.0",
"node-fetch": "^2.6.7",
"reflect-metadata": "^0.1.13",
"source-map-support": "^0.5.21",
"stoppable": "^1.1.0"
}
}