-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
91 lines (91 loc) · 3.26 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
{
"private": true,
"license": "Apache-2.0",
"packageManager": "[email protected]+sha512.cce0f9de9c5a7c95bef944169cc5dfe8741abfb145078c0d508b868056848a87c81e626246cb60967cbd7fd29a6c062ef73ff840d96b3c86c40ac92cf4a813ee",
"scripts": {
"format:check:all": "pnpm format:check \"+(front|shared-components|statviz)/**/*.{js,json,ts,tsx}\" ",
"format:check": "prettier --check --ignore-path .eslintignore",
"format:write:all": "pnpm format:write \"+(front|shared-components|statviz)/**/*.{js,json,ts,tsx}\"",
"format:write": "prettier --write --ignore-path .eslintignore",
"lint": "eslint --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint:fix": "pnpm lint --fix",
"lint:all": "pnpm lint shared-components front statviz",
"lint:all:fix": "pnpm lint:fix shared-components front statviz",
"test": "TZ=UTC vitest",
"test:coverage": "TZ=UTC vitest run --coverage",
"graphql-gen": "pnpm -C front generate-graphql-ts-types && pnpm -C statviz generate-graphql-ts-types",
"prepare": "husky || true"
},
"dependencies": {
"@apollo/client": "^3.11.9",
"@chakra-ui/icons": "^2.2.4",
"@chakra-ui/react": "^2.8.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@hookform/resolvers": "^3.9.1",
"@nivo/bar": "0.87.0",
"@nivo/core": "0.87.0",
"@nivo/pie": "0.87.0",
"@nivo/sankey": "0.87.0",
"@nivo/sunburst": "0.87.0",
"@tidyjs/tidy": "^2.5.2",
"@visx/axis": "^3.12.0",
"@visx/event": "^3.12.0",
"@visx/grid": "^3.12.0",
"@visx/group": "^3.12.0",
"@visx/mock-data": "^3.12.0",
"@visx/responsive": "^3.12.0",
"@visx/scale": "^3.12.0",
"@visx/shape": "^3.12.0",
"@visx/tooltip": "^3.12.0",
"chakra-react-select": "^4.9.2",
"date-fns": "^4.1.0",
"dom-to-image-more": "^3.5.0",
"graphql": "^16.8.1",
"lodash": "^4.17.21",
"react": "^18.3.1",
"react-dom": "^18.2.0",
"react-hook-form": "^7.53.1",
"react-router-dom": "^6.28.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.3",
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"@vitejs/plugin-react-swc": "^3.7.1",
"@vitest/coverage-v8": "^2.1.2",
"@vitest/ui": "^2.1.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.12",
"eslint-plugin-testing-library": "^6.3.0",
"jsdom": "25.0.1",
"lint-staged": "^15.2.8",
"prettier": "^3.1.1",
"tsc-files": "^1.1.4",
"typescript": "^5.6.3",
"vite": "^5.4.8",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.1.2"
},
"resolutions": {
"@graphql-codegen/cli": "^5.0.0",
"graphql": "^16.8.1"
},
"lint-staged": {
"*.{gql,graphql}": "pnpm graphql-gen",
"!(**/generated/*).{js,ts,tsx}": "pnpm lint:fix",
"*.{js,json,ts,tsx}": "prettier --write"
}
}