-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
107 lines (107 loc) · 3.35 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
99
100
101
102
103
104
105
106
107
{
"name": "@open-formulieren/formio-renderer",
"version": "0.1.0",
"description": "Alternative Form.io renderer made for Open Forms.",
"exports": "./dist/index.js",
"type": "module",
"types": "./dist/index.d.ts",
"scripts": {
"build:esm": "tspc -p tsconfig.prod.json && tsc-alias -p tsconfig.prod.json",
"build": "npm-run-all build:*",
"test": "npm-run-all test:*",
"test:storybook": "test-storybook",
"test:jest": "jest",
"format": "prettier --write 'src/**/*' '.storybook/**/*'",
"checkformat": "prettier --check 'src/**/*' '.storybook/**/*'",
"start": "npm run storybook",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"makemessages": "formatjs extract",
"compilemessages": "formatjs compile-folder --ast i18n/messages i18n/compiled",
"watch": "tspc -p tsconfig.prod.json --watch"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/open-formulieren/formio-renderer.git"
},
"author": "Maykin Media",
"license": "EUPL-1.2",
"bugs": {
"url": "https://github.com/open-formulieren/formio-renderer/issues"
},
"homepage": "https://github.com/open-formulieren/formio-renderer#readme",
"peerDependencies": {
"react": "^18.2.0",
"react-intl": "^6.6.2 || ^7.0.0"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.26.0",
"@formatjs/cli": "^6.5.1",
"@formatjs/ts-transformer": "^3.13.31",
"@open-formulieren/design-tokens": "^0.55.0",
"@open-formulieren/types": "^0.38.0",
"@storybook/addon-actions": "^8.5.1",
"@storybook/addon-essentials": "^8.5.1",
"@storybook/addon-interactions": "^8.5.1",
"@storybook/addon-links": "^8.5.1",
"@storybook/addon-styling-webpack": "^1.0.1",
"@storybook/addon-webpack5-compiler-babel": "^3.0.5",
"@storybook/jest": "^0.2.3",
"@storybook/react": "^8.5.1",
"@storybook/react-webpack5": "^8.5.1",
"@storybook/test": "^8.5.1",
"@storybook/test-runner": "^0.21.0",
"@storybook/testing-library": "^0.2.2",
"@trivago/prettier-plugin-sort-imports": "^5.2.0",
"@types/react": "^18.2.65",
"@types/webpack": "^5.28.5",
"@utrecht/components": "1.0.0-alpha.565",
"babel-loader": "^9.1.3",
"babel-plugin-formatjs": "^10.5.34",
"circular-dependency-plugin": "^5.2.2",
"formiojs": "~4.13.0",
"microscope-sass": "^2.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-formio": "~4.3.0",
"react-intl": "^7.1.5",
"sass": "^1.83.0",
"sass-loader": "^16.0.4",
"storybook": "^8.5.1",
"storybook-react-intl": "^3.2.3",
"ts-patch": "^3.3.0",
"tsc-alias": "^1.8.8",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "^5.7.2"
},
"dependencies": {
"@utrecht/component-library-react": "1.0.0-alpha.353",
"clsx": "^2.1.0",
"formik": "^2.4.5",
"zod": "^3.24.1",
"zod-formik-adapter": "^1.3.0"
},
"jest": {
"roots": [
"<rootDir>/src"
],
"modulePaths": [
"<rootDir>/src"
],
"moduleNameMapper": {
"@/(.*)$": "<rootDir>/src/$1",
"^.*\\.scss$": "<rootDir>/tests/stylesStub.ts"
},
"transformIgnorePatterns": [
"/node_modules/(?!uuid)/"
]
}
}