-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.94 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
{
"name": "react-skeleton-app",
"version": "0.0.1",
"description": "React starter-kit project",
"author": "Václav Daněk",
"license": "MIT",
"private": true,
"main": "''",
"scripts": {
"build": "webpack --config webpack.production.config.js --progress --profile",
"start": "webpack-dev-server --config webpack.dev.config.js --progress --profile",
"dev": "webpack-dashboard -- webpack-dev-server --config webpack.dev.config.js --progress --profile",
"lint": "eslint --ext js --ext jsx src || exit 0",
"test": "jest",
"watch": "jest --watch",
"type-check": "tsc"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.4.0",
"@fortawesome/free-regular-svg-icons": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@redux-devtools/extension": "^3.2.5",
"axios": "^1.3.6",
"bootstrap": "5.3.3",
"classnames": "^2.2.5",
"i18n-react": "^0.7.0",
"js-utils": "https://github.com/VaclavDanek/js-utils.git",
"loaders.css": "^0.1.2",
"moment": "^2.22.1",
"node-sass": "^9.0.0",
"react": "18.3.1",
"react-device-detect": "2.2.3",
"react-dom": "18.3.1",
"react-loaders": "^3.0.1",
"react-redux": "^9.1.2",
"react-router-dom": "^6.10.0",
"reactstrap": "^9.1.9",
"redbox-react": "^1.6.0",
"redux": "^5.0.1",
"redux-observable": "^3.0.0-rc.2",
"redux-thunk": "^3.1.0",
"reduxsauce": "^1.2.1",
"rxjs": "^7.8.0",
"seamless-immutable": "^7.1.4"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/eslint-parser": "^7.21.3",
"@babel/preset-env": "^7.21.4",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.21.4",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.10",
"@types/enzyme": "^3.10.13",
"@types/jest": "^29.5.1",
"@types/react-dom": "^18.2.1",
"@types/seamless-immutable": "^7.1.16",
"@types/webpack-env": "^1.18.0",
"@typescript-eslint/eslint-plugin": "^8.9.0",
"@typescript-eslint/parser": "^8.9.0",
"autoprefixer": "^10.4.13",
"babel-loader": "^9.1.2",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "7.1.2",
"eslint": "^9.12.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-testing-library": "^6.3.0",
"html-webpack-plugin": "^5.5.1",
"jest": "^29.4.3",
"mini-css-extract-plugin": "^2.7.2",
"postcss-loader": "^8.1.1",
"prettier": "^3.3.3",
"react-refresh": "^0.14.0",
"react-test-renderer": "^18.2.0",
"sass-loader": "^16.0.2",
"style-loader": "4.0.0",
"typescript": "^5.0.4",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^5.80.0",
"webpack-bundle-analyzer": "^4.8.0",
"webpack-cli": "^5.0.2",
"webpack-dashboard": "^3.3.7",
"webpack-dev-server": "^5.1.0"
}
}