-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
111 lines (111 loc) · 4.24 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
{
"name": "up-frontend",
"version": "3.0.0",
"author": "Lukáš Rod <info@lukasrod.cz> (https://lukasrod.cz)",
"private": true,
"license": "MIT",
"scripts": {
"audit": "audit-ci --config audit.config.json",
"types": "tsc",
"types:watch": "npm run types -- --watch",
"build": "cross-env NODE_ENV=production webpack --progress",
"build:ci": "cross-env NODE_ENV=production webpack",
"build:analyze": "cross-env BUNDLE_ANALYZE=true npm run build",
"dev": "cross-env NODE_ENV=development webpack serve --progress",
"lint:js": "eslint .",
"lint!:js": "eslint . --fix",
"lint:css": "stylelint src/**/*.css",
"lint!:css": "stylelint src/**/*.css --fix",
"lint": "npm run lint:js && npm run lint:css",
"lint!": "npm run lint!:js && npm run lint!:css",
"test": "npm run types && npm run lint && jest --silent",
"jest:watch": "npm run jest --watch",
"jest:debug": "npm run jest"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.26.0",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^12.1.5",
"@types/chroma-js": "^2.4.4",
"@types/eslint": "^8.56.12",
"@types/history": "^4.7.11",
"@types/jest": "^27.5.2",
"@types/react": "^17.0.83",
"@types/react-color": "^3.0.12",
"@types/react-dom": "^17.0.25",
"@types/react-router-dom": "^5.3.3",
"@types/react-select": "^3.1.2",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.21.0",
"audit-ci": "^7.1.0",
"babel-jest": "^27.5.1",
"babel-loader": "^9.2.1",
"confusing-browser-globals": "^1.0.11",
"cross-env": "^7.0.3",
"css-loader": "^6.11.0",
"css-minimizer-webpack-plugin": "^4.2.2",
"cssnano": "^5.1.15",
"csstype": "^3.1.3",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest-dom": "^4.0.3",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-testing-library": "^5.11.1",
"html-webpack-harddisk-plugin": "^2.0.0",
"html-webpack-plugin": "^5.6.3",
"jest": "^27.5.1",
"mini-css-extract-plugin": "^2.9.2",
"msw": "^0.36.8",
"postcss-loader": "^7.3.4",
"postcss-preset-env": "^7.8.3",
"prettier": "^3.4.2",
"style-loader": "^4.0.0",
"stylelint": "^15.11.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-order": "^6.0.4",
"stylelint-prettier": "^4.1.0",
"stylelint-webpack-plugin": "^5.0.1",
"terser-webpack-plugin": "^5.3.11",
"typescript": "^5.7.3",
"webpack": "^5.97.1",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.15.2"
},
"dependencies": {
"@babel/runtime": "^7.26.0",
"@fortawesome/fontawesome-svg-core": "~1.2.36",
"@fortawesome/free-brands-svg-icons": "~5.15.4",
"@fortawesome/react-fontawesome": "~0.1.19",
"@hot-loader/react-dom": "^17.0.2",
"@rodlukas/fontawesome-pro-solid-svg-icons": "^5.15.2",
"@sentry/browser": "^8.50.0",
"axios": "^0.29.0",
"bootstrap": "^4.6.2",
"chroma-js": "2.4.2",
"eslint-webpack-plugin": "^4.2.0",
"fuse.js": "^7.0.0",
"history": "^4.10.1",
"jwt-decode": "^3.1.2",
"postcss": "^8.5.1",
"react": "^17.0.2",
"react-color": "^2.19.3",
"react-dom": "^17.0.2",
"react-ga": "^3.3.1",
"react-hot-loader": "^4.13.1",
"react-router-dom": "^5.3.4",
"react-select": "^3.2.0",
"react-toastify": "^7.0.4",
"reactstrap": "^8.10.1"
}
}