-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.51 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
{
"name": "my-cost-check",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint:eslint": "eslint --ignore-path .gitignore . --ext .js,.jsx",
"lint:fix:eslint": "eslint --fix --ignore-path .gitignore . --ext .js,.jsx",
"lint:stylelint": "stylelint ./src/**/*.{css,jsx,tsx}",
"lint:fix:stylelint": "stylelint --fix ./src/**/*.{css,jsx,tsx}",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@fortawesome/react-fontawesome": "^0.1.18",
"@tanstack/react-location": "^3.7.4",
"chart.js": "^3.8.0",
"firebase": "^9.8.1",
"react": "^18.1.0",
"react-chartjs-2": "^4.1.0",
"react-dom": "^18.1.0",
"swr": "^1.3.0"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@storybook/addon-actions": "^6.5.6",
"@storybook/addon-essentials": "^6.5.6",
"@storybook/addon-interactions": "^6.5.6",
"@storybook/addon-links": "^6.5.6",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/react": "^6.5.6",
"@storybook/testing-library": "^0.0.11",
"@stylelint/postcss-css-in-js": "^0.38.0",
"@types/node": "^17.0.40",
"@types/react": "^18.0.11",
"@types/react-dom": "^18.0.5",
"@types/styled-components": "^5.1.25",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"@vitejs/plugin-react": "^1.3.2",
"autoprefixer": "^10.4.7",
"babel-loader": "^8.2.5",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-styled-components": "^2.0.7",
"eslint": "^8.17.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-storybook": "^0.5.12",
"postcss": "^8.4.14",
"postcss-syntax": "^0.36.2",
"prettier": "2.6.2",
"prettier-plugin-tailwindcss": "^0.1.11",
"styled-components": "^5.3.5",
"stylelint": "^14.8.5",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recess-order": "^3.0.0",
"stylelint-config-standard": "^25.0.0",
"tailwindcss": "^3.0.24",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"twin.macro": "^2.8.2",
"typescript": "^4.7.3",
"vite": "^2.9.9"
}
}