forked from OpenDataEnsemble/ode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.61 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.61 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
{
"name": "formulus-formplayer",
"version": "0.0.3",
"type": "module",
"private": true,
"license": "MIT",
"homepage": ".",
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@jsonforms/core": "^3.7.0",
"@jsonforms/examples": "^3.7.0",
"@jsonforms/material-renderers": "^3.7.0",
"@jsonforms/react": "^3.7.0",
"@mui/icons-material": "^7.3.7",
"@mui/material": "^7.3.7",
"@mui/x-date-pickers": "^8.26.0",
"@ode/components": "file:../packages/components",
"@ode/tokens": "file:../packages/tokens",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/react": "^19.2.9",
"@types/react-dom": "^19.2.3",
"ajv": "^8.17.1",
"ajv-errors": "^3.0.0",
"ajv-formats": "^3.0.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-swipeable": "^7.0.2",
"typescript": "^5.9.3",
"web-vitals": "^5.1.0"
},
"scripts": {
"start": "vite",
"sync-interface": "node scripts/sync-interface.js",
"build": "npm run sync-interface && tsc && vite build",
"preview": "vite preview",
"upload:android": "npm run build:rn",
"build:rn": "npm run build && npm run copy-to-rn",
"clean-rn-assets": "node scripts/clean-rn-assets.js",
"copy-to-rn": "node scripts/copy-to-rn.js",
"test": "vitest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier \"src/**/*.{js,jsx,ts,tsx,json,css,md}\" --write",
"format:check": "prettier \"src/**/*.{js,jsx,ts,tsx,json,css,md}\" --check",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@storybook/addon-docs": "^10.2.19",
"@storybook/react": "^10.2.19",
"@storybook/react-vite": "^10.2.19",
"@types/node": "^24.10.9",
"@vitejs/plugin-react": "^4.7.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-storybook": "10.2.19",
"globals": "^17.1.0",
"prettier": "3.8.1",
"react-refresh": "^0.18.0",
"storybook": "^10.2.19",
"typescript-eslint": "^8.54.0",
"vite": "^6.4.1",
"vitest": "^3.2.4"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}