-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
61 lines (61 loc) · 2.08 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
{
"name": "@boxtribute/front",
"version": "2.0.0",
"private": true,
"type": "module",
"description": "Boxtribute v2 FE",
"dependencies": {
"@auth0/auth0-react": "^2.3.0",
"@boxtribute/shared-components": "workspace:*",
"@sentry/react": "^8.52.1",
"@zxing/browser": "^0.1.5",
"@zxing/library": "^0.21.3",
"jotai": "^2.12.1",
"react-big-calendar": "^1.18.0",
"react-csv": "^2.2.2",
"react-icons": "^5.5.0",
"react-table": "^7.8.0",
"regenerator-runtime": "^0.14.1",
"victory": "^37.3.6"
},
"devDependencies": {
"@chakra-ui/storybook-addon": "^5.2.5",
"@sentry/types": "^8.52.1",
"@storybook/addon-actions": "^8.5.3",
"@storybook/addon-essentials": "^8.5.3",
"@storybook/addon-interactions": "^8.5.3",
"@storybook/addon-links": "^8.5.3",
"@storybook/node-logger": "^8.5.3",
"@storybook/react": "^8.5.3",
"@storybook/react-vite": "^8.5.3",
"@storybook/test": "^8.5.3",
"@types/react-big-calendar": "^1.16.1",
"@types/react-table": "^7.7.20",
"msw": "^2.7.0",
"mutationobserver-shim": "^0.3.7",
"storybook": "^8.5.3"
},
"scripts": {
"build": "vite build",
"dev": "vite",
"preview": "vite preview",
"test": "TZ=UTC vitest",
"test:coverage": "TZ=UTC vitest run --coverage",
"upload:test-report": "./node_modules/.bin/codecov",
"tsc:check": "tsc --noEmit",
"tsc:precommit": "tsc-files --noEmit",
"lint": "eslint --ext ts,tsx --report-unused-disable-directives --max-warnings 0 --ignore-path ../.eslintignore",
"lint:all": "pnpm lint .",
"lint:fix": "pnpm lint --fix",
"lint:fix:all": "pnpm lint:fix .",
"format:check:all": "pnpm format:check \"src/**/*.{js,jsx,json,scss,md,ts,tsx}\" ",
"format:check": "prettier --check --ignore-path ../.eslintignore",
"format:write:all": "pnpm format:write \"src/**/*.{js,jsx,json,scss,md,ts,tsx}\"",
"format:write": "prettier --write --ignore-path ../.eslintignore",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"msw": {
"workerDirectory": "public"
}
}