-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 2.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
{
"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",
"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"
},
"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/ts-transformer": "^3.12.0",
"@storybook/addon-actions": "^8.4.7",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-interactions": "^8.4.7",
"@storybook/addon-links": "^8.4.7",
"@storybook/addon-webpack5-compiler-babel": "^3.0.3",
"@storybook/jest": "^0.2.3",
"@storybook/react": "^8.4.7",
"@storybook/react-webpack5": "^8.4.7",
"@storybook/test": "^8.4.7",
"@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",
"babel-loader": "^9.1.3",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^8.4.7",
"storybook-react-intl": "^3.2.2",
"ts-patch": "^3.3.0",
"tsc-alias": "^1.8.8",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "^5.7.2"
},
"dependencies": {
"clsx": "^2.1.0",
"formik": "^2.4.5"
}
}