-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.58 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.58 KB
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
{
"name": "azure-sample-webapp",
"version": "7.1.0-dev",
"private": true,
"scripts": {
"start": "cross-env DISABLE_ESLINT_PLUGIN=true VITE_APP_VERSION=$npm_package_version HOST=localhost vite --open",
"build": "cross-env DISABLE_ESLINT_PLUGIN=true VITE_APP_VERSION=$npm_package_version vite build --outDir build --emptyOutDir",
"buildWithVersion": "cross-env DISABLE_ESLINT_PLUGIN=true VITE_APP_VERSION=$npm_package_version VITE_BUILD_NUMBER=$VITE_BUILD_NUMBER vite build --outDir build --emptyOutDir",
"preview": "cross-env DISABLE_ESLINT_PLUGIN=true VITE_APP_VERSION=$npm_package_version vite preview --outDir build --port 3000",
"test": "jest --coverage=false",
"cypress": "node_modules/.bin/cypress open",
"eslint": "eslint",
"prettier": "npx prettier -w",
"link:ui": "yalc add @cosmotech/ui && yalc link @cosmotech/ui && yarn install",
"unlink:ui": "yalc remove @cosmotech/ui && yarn install"
},
"dependencies": {
"@cosmotech/api-ts": "5.0.1",
"@cosmotech/azure": "^4.0.2",
"@cosmotech/core": "^3.0.2",
"@cosmotech/ui": "^11.0.2",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^7.3.10",
"@mui/lab": "7.0.1-beta.20",
"@mui/material": "^7.3.10",
"@reduxjs/toolkit": "^2.11.2",
"axios": "^1.15.0",
"date-fns": "^4.1.0",
"deepmerge": "^4.3.1",
"fast-deep-equal": "^3.1.3",
"i18next": "^25.10.10",
"i18next-browser-languagedetector": "^8.2.1",
"i18next-http-backend": "^3.0.4",
"jwt-decode": "^4.0.0",
"prop-types": "^15.8.1",
"react": "^19.2.5",
"react-countdown": "^2.3.6",
"react-dom": "^19.2.5",
"react-fade-in": "^2.0.1",
"react-hook-form": "^7.72.1",
"react-i18next": "^16.6.6",
"react-idle-timer": "^5.7.3",
"react-redux": "^9.2.0",
"react-router": "^7.14.1",
"react-virtualized": "^9.22.6",
"redux": "^5.0.1",
"redux-saga": "^1.4.2",
"rfdc": "^1.4.1",
"rxjs": "^7.8.2",
"sass": "^1.99.0",
"tslib": "^2.8.1",
"zod": "^4.3.6"
},
"engines": {
"node": "^24",
"yarn": "4.12.0"
},
"devDependencies": {
"@azure/msal-node": "^3.8.10",
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.2",
"@babel/preset-react": "^7.28.5",
"@eslint/compat": "^2.0.5",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@vitejs/plugin-react": "^6.0.1",
"babel-jest": "^30.3.0",
"cross-env": "^10.1.0",
"cypress": "^15.13.1",
"cypress-file-upload": "^5.0.8",
"cypress-localstorage-commands": "^2.3.0",
"cypress-mochawesome-reporter": "^4.0.2",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-cypress": "^6.3.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.15.2",
"eslint-plugin-n": "^17.24.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^17.5.0",
"jest": "~30.2.0",
"jest-canvas-mock": "^2.5.2",
"jest-environment-jsdom": "~30.2.0",
"jwt-simple": "^0.5.6",
"neostandard": "^0.13.0",
"prettier": "^3.8.3",
"read-excel-file": "^8.0.3",
"vite": "8.0.5",
"vite-plugin-csp-guard": "^3.0.0",
"vite-plugin-node-polyfills": "^0.26.0"
},
"resolutions": {
"glob": "^13.0.6"
},
"packageManager": "yarn@4.12.0"
}