-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
87 lines (87 loc) · 3.29 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
{
"private": true,
"license": "Apache-2.0",
"packageManager": "pnpm@9.15.1",
"scripts": {
"check-types": "pnpm -C front tsc:check && pnpm -C statviz tsc:check && pnpm -C shared-components tsc:check",
"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",
"graphql-gen": "cat ./back/boxtribute_server/graph_ql/definitions/basic/*.graphql ./back/boxtribute_server/graph_ql/definitions/protected/*.graphql ./back/boxtribute_server/graph_ql/definitions/public/types.graphql > ./graphql/generated/schema.graphql && pnpm gql-tada generate output",
"test": "TZ=UTC vitest",
"test:coverage": "TZ=UTC vitest run --coverage",
"prepare": "husky || true"
},
"dependencies": {
"@apollo/client": "^3.12.2",
"@chakra-ui/icons": "^2.2.4",
"@chakra-ui/react": "2.8.2",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@hookform/resolvers": "^3.10.0",
"@nivo/bar": "0.88.0",
"@nivo/core": "0.88.0",
"@nivo/pie": "0.88.0",
"@nivo/sankey": "0.88.0",
"@nivo/sunburst": "0.88.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",
"gql.tada": "^1.8.10",
"graphql": "^16.10.0",
"lodash": "^4.17.21",
"react": "^18.3.1",
"react-dom": "^18.2.0",
"react-hook-form": "^7.54.2",
"react-router-dom": "^6.28.2",
"zod": "^3.24.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/react": "^18.3.13",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.21.0",
"@vitejs/plugin-react-swc": "^3.7.2",
"@vitest/coverage-v8": "^2.1.8",
"@vitest/ui": "^2.1.8",
"eslint": "^8.56.0",
"eslint-config-prettier": "^10.0.1",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.18",
"eslint-plugin-testing-library": "^7.1.1",
"jsdom": "26.0.0",
"lint-staged": "^15.4.2",
"prettier": "^3.4.2",
"tsc-files": "^1.1.4",
"typescript": "^5.7.3",
"vite": "^6.0.9",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^2.1.8"
},
"lint-staged": {
"!(**/generated/*).{js,ts,tsx}": "pnpm lint:fix",
"*.{js,json,ts,tsx}": "prettier --write"
}
}