-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 2.65 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": "expense-tracker",
"version": "0.1.0",
"private": true,
"homepage": "https://expenses-tracker-app.github.io/frontend/",
"dependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.18",
"@mui/material": "^5.14.11",
"@mui/styled-engine-sc": "^6.0.0-alpha.1",
"@rollup/plugin-terser": "^0.4.4",
"@svgr/webpack": "^8.1.0",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.5.1",
"axios": "^1.6.2",
"chart.js": "^4.4.0",
"chokidar": "^3.5.3",
"css-select": "^5.1.0",
"eslint-config-prettier": "^9.0.0",
"fs-extra": "^11.1.1",
"gh-pages": "^6.0.0",
"html-webpack-plugin": "^5.5.3",
"husky": "^8.0.3",
"i18next": "^23.6.0",
"mz": "^2.7.0",
"nth-check": "^2.1.1",
"postcss": "^8.4.31",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-calendar": "^4.6.1",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^13.2.2",
"react-router-dom": "^6.16.0",
"styled-components": "^6.0.8",
"svgc": "^1.0.0",
"web-vitals": "^3.5.0",
"workbox-background-sync": "^7.0.0",
"workbox-cacheable-response": "^7.0.0"
},
"scripts": {
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/plugin-transform-class-properties": "^7.22.5",
"@babel/plugin-transform-json-strings": "^7.22.11",
"@babel/plugin-transform-nullish-coalescing-operator": "^7.22.11",
"@babel/plugin-transform-numeric-separator": "^7.22.11",
"@babel/plugin-transform-private-methods": "^7.22.5",
"@faker-js/faker": "^8.2.0",
"@jridgewell/sourcemap-codec": "^1.4.15",
"eslint": "^8.51.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-webpack-plugin": "^4.0.1",
"prettier": "3.1.0",
"react-scripts": "^5.0.1"
}
}