-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
98 lines (98 loc) · 3.31 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
{
"name": "webforms-ui",
"version": "2.4.3",
"private": false,
"scripts": {
"start": "export VITE_APP_VERSION=$(git describe --tags) && vite",
"build": "export VITE_APP_VERSION=$(git describe --tags) && vite build",
"build:ov": "npm run build -- --mode=ov && ./scripts/rename-assets-ov.sh",
"build:wp": "npm run build -- --mode=wp",
"build:pre": "npm run build -- --mode=pre",
"build:vercel": "npm run build -- --mode=vercel",
"test": "TZ=Europe/Madrid vitest",
"test:coverage": "TZ=Europe/Madrid vitest run --coverage",
"cypress": "TZ=Europe/Madrid cypress open",
"lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"i18n-extract": "./node_modules/.bin/i18next src/**/*.js* -o src/i18n/locale-xx.json -s",
"i18n-lint": "./scripts/lint-i18n.sh",
"preview": "vite preview"
},
"dependencies": {
"@date-io/dayjs": "1.x",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@googlemaps/js-api-loader": "^1.16.6",
"@mui/icons-material": "^5.15.15",
"@mui/material": "^5.15.15",
"@mui/x-charts": "^7.15.0",
"@mui/x-date-pickers": "^6.19.7",
"@somenergia/somenergia-ui": "^0.5.0",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react-swc": "^3.6.0",
"axios": "^1.6.8",
"dayjs": "^1.11.10",
"env-cmd": "^10.1.0",
"eslint-plugin-react-refresh": "^0.4.7",
"formik": "^2.2.9",
"i18next": "^23.11.2",
"i18next-parser": "^9.0.0",
"plausible-tracker": "^0.3.8",
"preval.macro": "^5.0.0",
"react": "^18.3.1",
"react-beautiful-dnd": "^13.1.1",
"react-dom": "^18.3.1",
"react-hotkeys": "^2.0.0",
"react-i18next": "^14.0.0",
"react-router-dom": "^6.2.2",
"vite": "^5.2.11",
"vite-plugin-svgr": "^4.2.0",
"vite-tsconfig-paths": "^4.3.2",
"yup": "^0.32.11"
},
"prettier": "prettier-config-standard",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "^7.24.5",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/plugin-transform-modules-commonjs": "^7.24.1",
"@babel/plugin-transform-runtime": "^7.24.3",
"@babel/preset-env": "^7.24.5",
"@babel/preset-react": "^7.24.1",
"@babel/preset-typescript": "^7.24.1",
"@testing-library/dom": "^10.1.0",
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^15.0.7",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^1.6.0",
"babel-plugin-transform-import-meta": "^2.2.1",
"cypress": "^12.17.4",
"cypress-file-upload": "^5.0.8",
"eslint": "^8.57.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.2",
"jsdom": "^24.0.0",
"prettier-config-standard": "^5.0.0",
"rollup-plugin-manifest-json": "^1.7.0",
"standard": "^16.0.4",
"vite-plugin-environment": "^1.1.3",
"vite-plugin-eslint": "^1.8.1",
"vitest": "^1.6.0"
}
}