-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.71 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
{
"name": "@ringpublishing/ring-mui-theme",
"version": "1.0.0",
"description": "Ring Mui Theme",
"license": "MIT",
"repository": {},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"engines": {
"node": "^18||^20"
},
"scripts": {
"watch": "tsc --watch",
"build": "tsc",
"lint": "npm run lint:js",
"lint:js": "eslint --ext .js,.jsx,.ts,.tsx src/ tests/",
"lint:js:fix": "npm run lint:js -- --fix",
"prebuild": "rimraf lib",
"preprepare": "npm run build ",
"prepare": "npm run build -- -p tsconfig.build.json",
"test": "vitest --watch=false",
"test:updateSnapshots": "vitest --watch=false --update"
},
"devDependencies": {
"@emotion/jest": "^11.11.0",
"@emotion/styled": "^11.0.0",
"@mui/x-data-grid": "7.14.0",
"@ringieraxelspringer/eslint-config": "^23.0.0",
"@ringieraxelspringer/tsconfig": "^6.0.0",
"@testing-library/react": "^16.0.1",
"@vitejs/plugin-react": "^4.3.3",
"jsdom": "^25.0.1",
"react": "^18.0.0",
"rimraf": "^5.0.0",
"ts-jest": "^29.0.0",
"typescript": "~5.1.0",
"vitest": "^2.0.5"
},
"peerDependencies": {
"@emotion/styled": "^11.0.0",
"@mui/material": "^5.0.0",
"react": "^18.0.0",
"@mui/x-data-grid": "7.14.0",
"@mui/x-data-grid-pro": "7.14.0",
"@mui/x-date-pickers": "7.14.0",
"@mui/x-date-pickers-pro": "7.14.0"
},
"peerDependenciesMeta": {
"@mui/x-data-grid": {
"optional": true
},
"@mui/x-data-grid-pro": {
"optional": true
},
"@mui/x-date-pickers": {
"optional": true
},
"@mui/x-date-pickers-pro": {
"optional": true
}
},
"eslintConfig": {
"extends": [
"@ringieraxelspringer/eslint-config"
]
}
}