-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
104 lines (104 loc) · 2.92 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
{
"name": "next-helo-app",
"version": "0.1.0",
"private": true,
"browserslist": "> 0.5%, last 2 versions, not dead",
"repository": {
"type": "git",
"url": "git+https://github.com/helo-system/next-helo-app.git"
},
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/helo-system/next-helo-app/issues"
},
"homepage": "https://helo-system.de",
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"lint": "next lint",
"eslint": "eslint \"**/*.+(js|jsx|ts|tsx)\"",
"eslint:fix": "eslint --fix \"**/*.+(js|jsx|ts|tsx)\"",
"prettier": "prettier --check src",
"prettier:fix": "prettier --write src",
"prepare": "husky install",
"pre-commit": "lint-staged"
},
"dependencies": {
"@chakra-ui/react": "2.3.5",
"@emotion/react": "11.10.4",
"@emotion/styled": "11.10.4",
"@fluentui/react-icons": "2.0.184",
"@socialgouv/matomo-next": "1.4.0",
"@tanstack/react-query": "4.10.3",
"@types/recharts": "1.8.23",
"axios": "1.1.2",
"chakra-dayzed-datepicker": "0.2.4",
"classnames": "2.3.2",
"dayzed": "3.2.3",
"framer-motion": "7.5.3",
"luxon": "3.0.4",
"next": "12.2.6",
"next-auth": "4.13.0",
"next-seo": "5.5.0",
"next-sitemap": "3.1.24",
"react": "18.2.0",
"react-data-table-component": "7.5.3",
"react-dom": "18.2.0",
"react-hook-form": "7.37.0",
"react-modal": "3.15.1",
"recharts": "2.1.12",
"styled-components": "5.3.6",
"usehooks-ts": "2.7.2",
"zod": "3.19.1"
},
"devDependencies": {
"@next/eslint-plugin-next": "12.3.1",
"@svgr/webpack": "6.4.0",
"@types/luxon": "3.0.1",
"@types/node": "18.8.4",
"@types/react": "18.0.21",
"@types/react-modal": "3.13.1",
"@typescript-eslint/eslint-plugin": "5.40.0",
"autoprefixer": "10.4.12",
"eslint": "8.25.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-next": "12.3.1",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-node": "0.3.6",
"eslint-plugin-check-file": "1.2.3",
"eslint-plugin-formatjs": "4.3.2",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.31.10",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-simple-import-sort": "8.0.0",
"eslint-plugin-testing-library": "5.7.2",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"postcss": "8.4.17",
"prettier": "2.7.1",
"sass": "1.55.0",
"tailwindcss": "3.1.8",
"typescript": "4.8.4"
},
"optionalDependencies": {
"@next/swc-linux-x64-gnu": "11.1.2"
},
"lint-staged": {
"./*/**/*.{js,jsx,ts,tsx}": [
"yarn run prettier:fix",
"yarn run eslint:fix"
],
"*.{json,md}": [
"yarn run prettier:fix"
]
},
"husky": {
"hooks": {
"pre-commit": "prettier && lint-staged"
}
}
}