-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.55 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.55 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
106
107
108
109
110
111
112
113
114
{
"name": "gordon-360-ui",
"version": "0.0.0",
"private": true,
"type": "module",
"dependencies": {
"@azure/msal-browser": "^3.10.0",
"@azure/msal-react": "^2.0.12",
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.10.8",
"@mui/icons-material": "^5.15.10",
"@mui/material": "^5.15.10",
"@mui/x-date-pickers": "^6.19.4",
"add-to-calendar-button": "^2.5.10",
"chart.js": "^4.4.3",
"cropperjs": "^1.6.1",
"date-fns": "^3.3.1",
"history": "^5.3.0",
"lodash": "^4.17.21",
"prop-types": ">=15.7.2",
"react": "^18.3.1",
"react-big-calendar": "^1.19.2",
"react-chartjs-2": "^5.2.0",
"react-cropper": "^2.3.3",
"react-csv": "^2.0.3",
"react-device-detect": "^2.2.3",
"react-dom": "^18.3.1",
"react-dom-confetti": "^0.2.0",
"react-dropzone": "^14.2.3",
"react-ga4": "^2.1.0",
"react-icons": "^5.2.1",
"react-image-gallery": "^1.3.0",
"react-imask": "^7.4.0",
"react-router": "^6.22.1",
"react-router-dom": "^6.22.1",
"react-router-hash-link": "^2.4.3",
"react-to-print": "^2.15.1",
"react-visibility-sensor": "^5.1.1",
"swiper": "^11.2.8",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz"
},
"devDependencies": {
"@babel/core": "^7.27.4",
"@babel/preset-env": "^7.27.2",
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/dotenv": "^6.1.1",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.14.202",
"@types/react-big-calendar": "^1.8.8",
"@types/react-dom": "^18.3.0",
"@types/react-router-dom": "^5.3.3",
"@types/react-router-hash-link": "^2.4.9",
"@vitejs/plugin-react": "^4.2.0",
"babel-jest": "^30.0.0",
"babel-plugin-transform-import-meta": "^2.3.3",
"dotenv": "^16.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.2.9",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"husky": "^9.0.11",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^30.0.0-beta.3",
"jest-transform-stub": "^2.0.0",
"jsdoc": "^4.0.2",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"sass": "^1.71.1",
"stylelint": "^16.2.1",
"stylelint-config-recommended-scss": "^14.0.0",
"ts-jest": "^29.3.4",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"vite": "^5.1.7",
"vite-tsconfig-paths": "^4.3.0"
},
"scripts": {
"build-css": "sass src --no-source-map",
"watch-css": "sass --watch src",
"start": "(start npm run watch-css && vite) || (npm run watch-css & vite)",
"prebuild": "bash save-ui-version.sh",
"build": "npm run build-css && tsc && vite build",
"format": "prettier --write '{**/*.md,src/**/*.{js,scss,ts,tsx}}'",
"lint": "npm run --silent lint-js && npm run --silent lint-scss",
"lint-js": "eslint --ext .js,.ts,.tsx src",
"lint-scss": "stylelint 'src/**/*.scss'",
"prepare": "husky",
"lint-staged": "lint-staged",
"serve": "vite preview",
"test": "jest"
},
"lint-staged": {
"{**/*.md,src/**/*.{js,jsx,scss,ts,tsx}}": "prettier --write",
"src/**/*.{js,jsx,ts,tsx}": "eslint",
"src/**/*.scss": "stylelint"
},
"browserslist": {
"production": [
">0.3%",
"not dead"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}