forked from opstrace/opstrace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.42 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
{
"name": "@opstrace/opstrace",
"version": "0.0.0",
"private": true,
"workspaces": [
"packages/*",
"lib/*",
"test/*",
"modules/*"
],
"repository": "https://github.com/opstrace/opstrace.git",
"enginesStrict": true,
"engines": {
"node": ">=14.10.0"
},
"description": "Observability Platform",
"main": "./build/cli.js",
"author": "Opstrace, Inc.",
"license": "Apache-2.0",
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@redux-saga/types": "^1.1.0",
"@types/node": "^14.14.7",
"@types/source-map-support": "^0.5.2",
"@types/yup": "^0.28.3",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"babel-eslint": "10.x",
"eslint": "^7.13.0",
"eslint-config-prettier": "^7.1.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "5.x",
"eslint-plugin-import": "2.x",
"eslint-plugin-jsx-a11y": "6.x",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "4.x",
"husky": "^4.3.0",
"istanbul-reports": "^3.0.2",
"lint-staged": "^10.5.3",
"markdownlint-cli": "^0.26.0",
"pkg": "^4.4.9",
"prettier": "^2.2.1",
"redux-devtools-extension": "^2.13.8",
"rimraf": "^3.0.0",
"source-map-support": "^0.5.19",
"ts-node": "^9.1.1",
"typescript": "4.1.3",
"wsrun": "^5.2.4"
},
"dependencies": {
"@types/js-yaml": "^3.12.5",
"typesafe-actions": "^5.1.0"
},
"resolutions": {
"**/**/bl": "^4.0.3",
"**/**/dot-prop": "^5.1.1",
"**/**/elliptic": "^6.5.3",
"**/**/lodash": "^4.17.19",
"**/**/object-path": "^0.11.5",
"**/**/serialize-javascript": "^3.1.0",
"**/**/yargs-parser": "^20.2.6"
},
"scripts": {
"clean": "yarn wsrun -c clean && rimraf .cache tsconfig.tsbuildinfo",
"lint": "yarn wsrun -c lint",
"golint": "cd go && golangci-lint run --fix -c .golangci.yml # ",
"markdownlint": "markdownlint",
"license": "addlicense -c 'Opstrace, Inc.' -l apache -check",
"watch:controller": "yarn workspace @opstrace/controller watch",
"build:controller": "yarn workspace @opstrace/controller build",
"watch:installer": "yarn workspace @opstrace/installer watch",
"build:installer": "yarn workspace @opstrace/installer build",
"watch:uninstaller": "yarn workspace @opstrace/uninstaller watch",
"build:uninstaller": "yarn workspace @opstrace/uninstaller build",
"watch:upgrader": "yarn workspace @opstrace/upgrader watch",
"build:upgrader": "yarn workspace @opstrace/upgrader build",
"build:buildinfo": "yarn workspace @opstrace/buildinfo build",
"watch:cli": "yarn workspace @opstrace/cli watch",
"build:cli": "yarn workspace @opstrace/cli build",
"build:ui": "yarn workspace @opstrace/app build",
"watch:ui": "yarn workspace @opstrace/app watch",
"unit-test:ui": "yarn workspace @opstrace/app test",
"watch": "yarn wsrun -p @opstrace/controller -p @opstrace/uninstaller -p @opstrace/installer -p @opstrace/cli -c watch"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.go": [
"yarn license",
"gofmt -s -w",
"yarn golint"
],
"*.{js,css,json,ts,tsx}": [
"yarn license",
"yarn run prettier --write"
],
"*.md": [
"markdownlint"
]
}
}