-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.09 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
{
"name": "krossboard-ui",
"version": "1.2.1",
"private": false,
"description": "Frontend for Krossboard",
"author": {
"name": "2Alchimists",
"web": "https://2alchemists.com/"
},
"homepage": "https://krossboard.app",
"license": "GNU AFFERO GENERAL PUBLIC LICENSE",
"repository": "[email protected]:2-alchemists/krossboard-ui.git",
"main": "src/index.tsx",
"scripts": {
"develop": "concurrently -r \"yarn:type-check:watch\" \"yarn:start\"",
"start": "parcel ./src/index.html",
"build": "yarn type-check && parcel build ./src/index.html --no-source-maps",
"prettify": "prettier --write './src/**/*.{ts,tsx}'",
"start-server": "yarn nodemon server/index.js",
"type-check": "tsc --noEmit",
"type-check:watch": "tsc --noEmit --watch",
"lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'src/**/*.tsx' 'test/**/*.ts'",
"release": "standard-version"
},
"engines": {
"node": ">= 12.16.2"
},
"jest": {
"preset": "ts-jest",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"moduleNameMapper": {
".+\\.css$": "<rootDir>/src/styleMock.ts"
}
},
"keywords": [
"Kubernetes",
"Analytics",
"Cluster"
],
"dependencies": {
"@babel/runtime": "^7.7.7",
"@date-io/core": "^1.3.6",
"@date-io/date-fns": "^1.3.13",
"@material-ui/core": "^4.9.2",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.42",
"@material-ui/pickers": "^3.2.10",
"@types/d3": "^5.7.2",
"@types/d3-time-format": "^2.1.1",
"@types/i18next": "^13.0.0",
"@types/react-resize-detector": "^4.0.2",
"@types/react-router": "^5.1.11",
"@types/react-router-dom": "^5.1.7",
"@types/recharts": "^1.8.4",
"@use-it/interval": "^0.1.3",
"axios": "^0.21.1",
"clsx": "^1.0.4",
"cors": "^2.8.5",
"d3-selection": "^1.4.0",
"d3-time-format": "^2.2.3",
"date-fns": "^2.19.0",
"dist": "^0.1.2",
"express": "^4.17.1",
"i18next": "^19.1.0",
"i18next-browser-languagedetector": "^4.0.1",
"mobx": "^5.15.7",
"mobx-react-lite": "^1.5.2",
"multer": "^1.4.2",
"prop-types": ">=15",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"react-i18next": "^11.3.1",
"react-resize-detector": "^4.2.1",
"react-router-dom": "^5.2.0",
"recharts": "1.8.5"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@types/node": "^11.13.6",
"@types/react": "^16.8.6",
"@types/react-dom": "^17.0.3",
"concurrently": "^4.1.0",
"husky": "^4.3.8",
"nodemon": "^2.0.20",
"parcel-bundler": "^1.12.3",
"parcel-plugin-clean-dist": "^0.0.6",
"prettier": "^1.17.0",
"standard-version": "^8.0.1",
"ts-jest": "^24.0.2",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^8.0.1",
"tslint-react": "^4.0.0",
"tslint-react-hooks": "^2.2.1",
"typescript": "^3.4.4"
},
"resolutions": {
"@types/react": "^16.8.6"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}