-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.84 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
{
"name": "mortgage-calculator",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"prepare": "husky install",
"test": "jest"
},
"dependencies": {
"@fontsource/roboto": "^4.5.3",
"@mui/icons-material": "^5.4.2",
"@mui/material": "^5.4.2",
"@mui/styled-engine-sc": "^5.4.2",
"@mui/x-data-grid": "^5.5.1",
"chart.js": "^3.7.1",
"lodash-es": "^4.17.21",
"moment": "^2.29.1",
"nanoid": "^3.3.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-number-format": "^4.9.1",
"react-router-dom": "6",
"styled-components": "^5.3.3",
"zustand": "^3.7.0",
"zustand-persist": "^0.4.0"
},
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@types/jest": "^27.4.0",
"@types/lodash-es": "^4.17.6",
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"@types/styled-components": "^5.1.23",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"@vitejs/plugin-react": "^1.0.7",
"babel-jest": "^27.5.1",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "3.3.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^19.0.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": ">=6",
"jest": "^27.5.1",
"lint-staged": ">=10",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"typescript": "^4.5.4",
"vite": "^2.8.0"
},
"lint-staged": {
"*.ts": "eslint --fix"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}