-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
81 lines (81 loc) · 2.56 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
{
"name": "@open-formulieren/formio-renderer",
"version": "0.1.0",
"description": "Alternative Form.io renderer made for Open Forms.",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"source": "src/index.tsx",
"exports": {
".": {
"import": "./lib/esm/index.js",
"require": "./lib/cjs/index.js",
"default": "./lib/cjs/index.js"
},
"./esm/": "./lib/esm/",
"./lib/": "./lib/"
},
"scripts": {
"build:esm": "tspc -p tsconfig.prod.json && tsc-alias -p tsconfig.prod.json",
"build:cjs": "tspc -p tsconfig.prod.json --module commonjs --outDir lib/cjs && tsc-alias -p tsconfig.prod.json --outDir lib/cjs",
"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": [
"lib"
],
"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",
"@formatjs/ts-transformer": "^3.12.0",
"@storybook/addon-actions": "^8.0.0",
"@storybook/addon-essentials": "^8.0.0",
"@storybook/addon-interactions": "^8.0.0",
"@storybook/addon-links": "^8.0.0",
"@storybook/jest": "^0.2.3",
"@storybook/react": "^8.0.0",
"@storybook/react-webpack5": "^8.0.0",
"@storybook/test-runner": "^0.17.0",
"@storybook/testing-library": "^0.2.2",
"@trivago/prettier-plugin-sort-imports": "^4.3.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.0.0",
"storybook-react-intl": "^3.0.1",
"ts-patch": "^3.1.2",
"tsc-alias": "^1.8.8",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "^5.4.2"
},
"dependencies": {
"@storybook/test": "^8.0.0",
"clsx": "^2.1.0",
"formik": "^2.4.5"
}
}