-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 4.25 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
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "inventory-management-system",
"version": "1.0.4",
"type": "module",
"private": true,
"dependencies": {
"@date-io/date-fns": "3.0.0",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@hookform/resolvers": "^3.6.0",
"@mui/icons-material": "^5.15.19",
"@mui/material": "^5.15.19",
"@mui/x-date-pickers": "^7.6.1",
"@reduxjs/toolkit": "^2.2.5",
"@tanstack/react-query": "^5.40.0",
"@tanstack/react-query-devtools": "^5.40.0",
"@types/node": "^22.0.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@uppy/aws-s3": "^4.1.0",
"@uppy/core": "^4.2.2",
"@uppy/dashboard": "^4.1.0",
"@uppy/drag-drop": "^4.0.2",
"@uppy/file-input": "^4.0.1",
"@uppy/image-editor": "^3.1.0",
"@uppy/progress-bar": "^4.0.0",
"@uppy/react": "^4.0.2",
"@uppy/xhr-upload": "^4.2.0",
"@vitejs/plugin-react": "^4.3.0",
"axios": "^1.7.2",
"blob-polyfill": "^9.0.20240710",
"browserslist": "^4.23.0",
"browserslist-to-esbuild": "^2.1.1",
"date-fns": "4.1.0",
"history": "^5.3.0",
"loglevel": "^1.9.1",
"lz-string": "^1.5.0",
"material-react-table": "^2.13.0",
"msw": "2.7.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.52.0",
"react-redux": "^9.1.2",
"react-router-dom": "^6.23.1",
"single-spa-react": "6.0.2",
"typescript": "^5.4.5",
"vite": "^5.2.12",
"vite-plugin-css-injected-by-js": "^3.5.2",
"zod": "^3.23.8"
},
"scripts": {
"dev": "vite --open",
"dev-docker": "vite --host",
"build": "tsc --project tsconfig.build.json && vite build",
"preview": "vite preview",
"preview:build": "yarn build && yarn preview",
"preview:build:dev": "yarn build --watch & yarn preview",
"test": "vitest --coverage",
"lint": "eslint --max-warnings=0 --fix ./src ./cypress && tsc --noEmit && tsc --noEmit -p cypress/tsconfig.json",
"build:e2e": "cross-env VITE_APP_BUILD_STANDALONE=true VITE_APP_INCLUDE_MSW=true GENERATE_SOURCEMAP=false yarn build",
"build:e2e:api": "cross-env VITE_APP_BUILD_STANDALONE=true VITE_APP_INCLUDE_MSW=false GENERATE_SOURCEMAP=false yarn build",
"e2e:serve": "yarn build:e2e && node ./server/e2e-test-server.js",
"e2e:serve:api": "yarn build:e2e:api && node ./server/e2e-test-server.js",
"e2e:interactive": "start-server-and-test e2e:serve http://localhost:3000 cy:open",
"e2e:interactive:api": "start-server-and-test e2e:serve:api http://localhost:3000 cy:open",
"e2e": "cross-env USE_API_SETTINGS=false start-server-and-test e2e:serve http://localhost:3000 cy:run",
"e2e:api": "cross-env USE_API_SETTINGS=true start-server-and-test e2e:serve:api http://localhost:3000 cy:run:api",
"cy:open": "cross-env TZ=UTC cypress open",
"cy:run": "cross-env TZ=UTC cypress run --spec \"./cypress/e2e/with_mock_data/*.cy.ts\"",
"cy:run:api": "cross-env TZ=UTC cypress run --spec \"./cypress/e2e/with_api/**/*.cy.ts\""
},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
],
"packageManager": "[email protected]",
"devDependencies": {
"@babel/eslint-parser": "7.25.9",
"@eslint/compat": "1.2.4",
"@eslint/js": "9.17.0",
"@tanstack/eslint-plugin-query": "5.62.1",
"@testing-library/cypress": "10.0.2",
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.1.0",
"@testing-library/user-event": "14.5.2",
"@types/eslint-plugin-jsx-a11y": "6.10.0",
"@types/eslint__js": "8.42.3",
"@types/react-router-dom": "5.3.3",
"@vitest/coverage-v8": "2.1.8",
"cross-env": "7.0.3",
"cypress": "13.16.1",
"eslint": "9.17.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-cypress": "4.1.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-no-only-tests": "3.3.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "5.1.0",
"eslint-plugin-testing-library": "7.1.1",
"express": "4.21.2",
"globals": "15.13.0",
"jsdom": "25.0.1",
"prettier": "3.4.2",
"serve": "14.2.4",
"serve-static": "1.16.2",
"start-server-and-test": "2.0.9",
"typescript-eslint": "8.19.0",
"vitest": "2.1.8"
},
"msw": {
"workerDirectory": "public"
}
}