-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.56 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
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"license": "MIT",
"contributors": [
{
"name": "Mateusz Drewniak",
"email": "[email protected]"
},
{
"name": "Michał Zaporski",
"email": "[email protected]"
},
{
"name": "Michał Zmudziński",
"email": "[email protected]"
},
{
"name": "Kuba Jądrzak",
"email": "[email protected]"
}
],
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@fontsource/fira-code": "^4.5.10",
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@fortawesome/react-fontawesome": "^0.1.18",
"@msgpack/msgpack": "^2.7.2",
"@mui/material": "^5.6.4",
"@mui/x-date-pickers": "^5.0.6",
"@uiw/react-md-editor": "^3.14.1",
"ansicolor": "^1.1.100",
"axios": "^0.27.2",
"axios-case-converter": "^0.9.0",
"chart.js": "^3.9.1",
"chokidar": "^3.5.3",
"classnames": "^2.3.1",
"date-fns": "^2.29.3",
"dateformat": "^5.0.3",
"dayjs": "^1.11.6",
"esbuild": "^0.14.38",
"esbuild-plugin-prismjs": "^1.0.7",
"esbuild-sass-plugin": "^2.2.6",
"humps": "^2.0.1",
"immutability-helper": "^3.1.1",
"jdenticon": "^3.1.1",
"jwt-decode": "^3.1.2",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"panic-overlay": "^1.0.51",
"prism-themes": "^1.9.0",
"prismjs": "^1.28.0",
"prop-types": "^15.8.1",
"react": "^18.1.0",
"react-chartkick": "^0.5.3",
"react-colorful": "^5.5.1",
"react-dom": "^18.1.0",
"react-router-dom": "^6.4.2",
"react-simple-code-editor": "^0.11.2",
"react-sortablejs": "^6.1.4",
"react-use-cookie": "^1.4.0",
"react-window": "^1.8.7",
"rehype-sanitize": "^5.0.1",
"sortablejs": "^1.15.0",
"swr": "^1.3.0",
"web-vitals": "^2.1.4",
"zustand": "^4.1.4"
},
"scripts": {
"build:development": "node ./frontend/scripts/build.dev.mjs",
"build:test": "node ./frontend/scripts/build.test.mjs",
"build:production": "node ./frontend/scripts/build.prod.mjs",
"lint": "eslint \"./frontend/src\""
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"cypress": "^9.6.1",
"eslint": "^8.14.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0"
}
}