-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.22 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
{
"name": "trac.io",
"private": true,
"version": "1.0.0",
"engines": {
"npm": "please-use-yarn",
"yarn": ">= 1.19.1"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint src --max-warnings=0",
"format": "prettier src --write",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"storybook": "start-storybook -p 6006",
"predeploy": "npm run build-storybook",
"deploy-storybook": "gh-pages -d storybook-static",
"build-storybook": "build-storybook",
"prepare": "husky install"
},
"dependencies": {
"@ant-design/colors": "^7.0.0",
"@ant-design/icons": "^5.0.1",
"@fortawesome/fontawesome-svg-core": "^6.2.0",
"@fortawesome/free-solid-svg-icons": "^6.2.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@highcharts/map-collection": "^2.0.1",
"@reduxjs/toolkit": "^1.8.5",
"@types/react-lottie": "^1.2.6",
"antd": "^5.3.0",
"date-fns": "^2.29.3",
"highcharts": "^10.3.3",
"highcharts-react-official": "^3.2.0",
"i18next": "^21.9.2",
"i18next-browser-languagedetector": "^6.1.5",
"react": "^18.0.2",
"react-dom": "^18.0.2",
"react-i18next": "^12.0.0",
"react-lottie": "^1.2.3",
"react-redux": "^8.0.2",
"react-router-dom": "^6.4.0",
"redux": "^4.2.0",
"styled-components": "^5.3.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"yarn eslint --fix --max-warnings=0",
"yarn prettier --write"
]
},
"devDependencies": {
"@babel/core": "^7.19.1",
"@babel/eslint-parser": "^7.19.1",
"@babel/preset-env": "^7.19.1",
"@babel/preset-react": "^7.18.6",
"@faker-js/faker": "^7.6.0",
"@storybook/addon-a11y": "^6.5.13",
"@storybook/addon-actions": "^6.5.13",
"@storybook/addon-essentials": "^6.5.13",
"@storybook/addon-interactions": "^6.5.13",
"@storybook/addon-links": "^6.5.13",
"@storybook/addon-storysource": "^6.5.13",
"@storybook/builder-vite": "^0.2.5",
"@storybook/react": "^6.5.13",
"@storybook/testing-library": "^0.0.13",
"@testing-library/jest-dom": "^5.14.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@types/styled-components": "^5.1.26",
"@vitejs/plugin-react": "^2.1.0",
"@vitest/coverage-c8": "^0.23.4",
"babel-loader": "^8.2.5",
"babel-plugin-styled-components": "^2.0.7",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.4",
"gh-pages": "^5.0.0",
"husky": "^8.0.0",
"jest-styled-components": "^7.1.1",
"jsdom": "^20.0.0",
"lint-staged": "^13.0.3",
"prettier": "2.7.1",
"typescript": "^4.8.3",
"vite": "^3.1.0",
"vitest": "^0.23.4",
"vitest-canvas-mock": "^0.2.2"
},
"homepage": "http://rafamoliv.github.io/trac.io",
"resolutions": {
"@storybook/react-docgen-typescript-plugin": "1.0.1",
"react-i18next": ">=11.16.4"
}
}