-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
122 lines (122 loc) · 3.35 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
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "codereview-analyzer",
"version": "0.1.0",
"private": true,
"homepage": "http://acherkashin.github.io/codereview-analyzer",
"dependencies": {
"@emotion/react": "^11.7.0",
"@emotion/styled": "^11.6.0",
"@gitbeaker/rest": "40.0.1",
"@mui/icons-material": "^5.2.5",
"@mui/lab": "^5.0.0-alpha.107",
"@mui/material": "^5.10.13",
"@mui/x-date-pickers": "^6.19.6",
"@nivo/bar": "^0.85.1",
"@nivo/calendar": "^0.85.1",
"@nivo/chord": "^0.85.1",
"@nivo/core": "^0.85.1",
"@nivo/line": "^0.85.1",
"@nivo/pie": "^0.85.1",
"@nivo/scatterplot": "^0.85.1",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@tidyjs/tidy": "^2.4.4",
"@types/jest": "^26.0.15",
"@types/node": "^12.0.0",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"classnames": "^2.5.1",
"dayjs": "^1.11.10",
"gitea-js": "^1.20.1",
"proxy-memoize": "^3.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.4.3",
"react-scripts": "5.0.1",
"react-showdown": "^2.3.1",
"react-toastify": "^10.0.5",
"react-wordcloud": "^1.2.7",
"typescript": "^5.4.5",
"web-vitals": "^1.0.1",
"zipcelx": "^1.6.2",
"zustand": "^4.5.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"predeploy": "yarn run build",
"deploy": "gh-pages -d build",
"prettier-write": "prettier --write .",
"prepare": "husky install",
"storybook": "storybook dev -p 6006 -s public",
"build-storybook": "storybook build -s public",
"eslint-fix": "eslint --fix --ext .tsx,.ts src/",
"cm": "cz"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@storybook/addon-actions": "^7.6.17",
"@storybook/addon-essentials": "^7.6.17",
"@storybook/addon-interactions": "^7.6.17",
"@storybook/addon-links": "^7.6.17",
"@storybook/addon-mdx-gfm": "^7.6.17",
"@storybook/node-logger": "^7.6.17",
"@storybook/preset-create-react-app": "^7.6.17",
"@storybook/react": "^7.6.17",
"@storybook/react-webpack5": "^7.6.17",
"@storybook/testing-library": "^0.2.2",
"@types/zipcelx": "^1.5.0",
"babel-plugin-named-exports-order": "^0.0.2",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"gh-pages": "^3.2.3",
"husky": "^7.0.4",
"lint-staged": "^12.1.7",
"prettier": "^2.5.1",
"prop-types": "^15.8.1",
"storybook": "^7.6.17",
"webpack": "^5.74.0"
},
"resolutions": {
"**/fork-ts-checker-webpack-plugin": "^6.5.3",
"@typescript-eslint/parser": "^6.7.5"
},
"lint-staged": {
"*.{js,css,md,tsx,ts,jsx}": "prettier --write"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}