-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.83 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
{
"name": "Galp",
"version": "0.1.0",
"description": "",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"prettier:format": "prettier --write .",
"prettier:check": "prettier --check \"**/*.{ts,tsx,json}\"",
"lint": "next lint",
"eslint:format": "eslint . --ext ts --ext tsx --ext js",
"test": "jest test",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"test:ci": "jest --ci",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.4.2",
"@fortawesome/free-brands-svg-icons": "^6.4.2",
"@fortawesome/free-solid-svg-icons": "^6.4.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"@nextui-org/react": "^1.0.0-beta.10",
"@t3-oss/env-nextjs": "0.7.0",
"add": "2.0.6",
"apexcharts": "^3.35.5",
"babel-plugin-styled-components": "^2.1.4",
"chart.js": "2.9.3",
"font-awesome": "^4.7.0",
"next": "13.5.4",
"react": "18.2.0",
"react-apexcharts": "^1.4.0",
"react-dom": "18.2.0",
"styled-components": "^6.0.9",
"swr": "^2.2.4",
"tailwind-merge": "1.14.0",
"zod": "3.22.4"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.0.26",
"@storybook/addon-interactions": "^7.4.6",
"@storybook/addon-links": "^7.4.6",
"@storybook/blocks": "^7.4.6",
"@storybook/nextjs": "^7.4.6",
"@storybook/react": "^7.4.6",
"@storybook/testing-library": "^0.2.2",
"@testing-library/jest-dom": "5.17.0",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "14.5.1",
"@types/chart.js": "^2.9.39",
"@types/next": "^9.0.0",
"@types/node": "^20.8.3",
"@types/react": "^18.2.25",
"@types/react-dom": "^18.2.12",
"@types/styled-components": "^5.1.28",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"autoprefixer": "10.4.16",
"babel-jest": "29.7.0",
"eslint": "8.51.0",
"eslint-config-next": "13.5.4",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-import-helpers": "1.3.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-storybook": "0.6.15",
"eslint-plugin-testing-library": "6.0.2",
"identity-obj-proxy": "3.0.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-watch-typeahead": "2.2.2",
"lint-staged": "13.2.3",
"pinst": "3.0.0",
"postcss": "8.4.31",
"prettier": "2.8.8",
"prettier-plugin-tailwindcss": "0.4.1",
"storybook": "^7.4.6",
"tailwind-scrollbar": "3.0.5",
"tailwindcss": "3.3.3",
"typescript": "^5.2.2"
},
"lint-staged": {
"src/**/*": [
"yarn prettier:format",
"yarn eslint:format"
]
}
}