-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
98 lines (98 loc) · 2.79 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
{
"name": "@i-vresse/wb-core",
"version": "3.2.4",
"description": "React components to construct a workflow builder application",
"keywords": [
"react",
"components",
"workflow"
],
"license": "Apache-2.0",
"homepage": "https://github.com/i-VRESSE/workflow-builder",
"repository": {
"type": "git",
"url": "git+https://github.com/i-VRESSE/workflow-builder.git",
"directory": "packages/core"
},
"publishConfig": {
"access": "public"
},
"packageManager": "yarn@3.2.1",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "tsup --watch",
"build": "tsup-node",
"lint": "ts-standard",
"test": "vitest",
"storybook": "NODE_OPTIONS=--openssl-legacy-provider start-storybook -p 6008",
"build-storybook": "NODE_OPTIONS=--openssl-legacy-provider build-storybook",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
"apidocs": "typedoc --entryPointStrategy expand --exclude '**/*.tsx' --exclude '**/*.stories.*' ./src"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@emotion/react": "^11.9.3",
"@mdx-js/react": "^1.6.22",
"@storybook/addon-actions": "^6.5.9",
"@storybook/addon-docs": "^6.5.9",
"@storybook/addon-essentials": "^6.5.9",
"@storybook/addon-interactions": "^6.5.9",
"@storybook/builder-vite": "^0.2.2",
"@storybook/react": "^6.5.9",
"@storybook/testing-library": "^0.0.13",
"@testing-library/react": "12",
"@testing-library/react-hooks": "^8.0.1",
"@types/file-saver": "^2.0.4",
"@types/js-yaml": "^4.0.5",
"@types/papaparse": "^5.3.2",
"@types/react-syntax-highlighter": "13.5.2",
"@vitest/coverage-v8": "^1.5.3",
"babel-loader": "^8.2.5",
"c8": "^7.11.0",
"jsdom": "^20.0.0",
"ts-dedent": "^2.2.0",
"ts-standard": "^12.0.2",
"tsup": "^6.1.3",
"typedoc": "^0.23.7",
"vite": "^3.0.4",
"vitest": "1.5.3"
},
"dependencies": {
"@dnd-kit/core": "^6.0.5",
"@dnd-kit/modifiers": "^6.0.0",
"@dnd-kit/sortable": "^7.0.1",
"@i-vresse/pdbtbx-ts": "0.1.7",
"@i-vresse/wb-form": "workspace:^",
"@ltd/j-toml": "^1.24.0",
"@zip.js/zip.js": "^2.3.23",
"ajv": "^8.9.0",
"ajv-formats": "^2.1.1",
"bootstrap": "^4",
"file-saver": "^2.0.5",
"js-yaml": "^4.1.0",
"nanoid": "^4.0.0",
"papaparse": "^5.3.2",
"react-bootstrap": "^1",
"react-dnd-html5-backend": "^14.1.0",
"react-icons": "^3.10.0",
"react-syntax-highlighter": "15.4.5",
"react-toastify": "^8.1.0",
"recoil": "^0.5.2",
"web-encoding": "^1.1.5"
},
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0"
},
"ts-standard": {
"ignore": [
"tsup.config.ts",
"vitest.config.ts"
]
}
}