-
Notifications
You must be signed in to change notification settings - Fork 145
/
package.json
53 lines (53 loc) · 1.6 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
{
"name": "jsonforms-react-seed",
"version": "0.1.1",
"private": true,
"dependencies": {
"@jsonforms/core": "3.4.1",
"@jsonforms/material-renderers": "3.4.1",
"@jsonforms/react": "3.4.1",
"@mui/icons-material": "^6.1.0",
"@mui/lab": "6.0.0-beta.9",
"@mui/material": "^6.1.0",
"@mui/x-date-pickers": "^7.17.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@testing-library/react": "^16.0.0",
"@types/node": "^20.14.2",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"@vitejs/plugin-react-swc": "^3.7.0",
"@vitest/coverage-v8": "^1.6.0",
"cypress": "^13.11.0",
"eslint": "^8",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"jsdom": "^24.1.0",
"prettier": "^3.3.1",
"start-server-and-test": "^2.0.4",
"typescript": "~5.4.5",
"vite": "^5.2.12",
"vitest": "^1.6.0"
},
"scripts": {
"dev": "vite --port 3000",
"build": "tsc && vite build",
"format": "prettier --write \"**/*.{ts,tsx,md,css,scss}\"",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"start": "vite preview --port 3000",
"test": "vitest run --coverage",
"cypress:open": "cypress open",
"cypress:run": "cypress run --config video=false",
"cypress:ci": "BROWSER=none start-server-and-test start http://localhost:3000 cypress:run"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}