-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.85 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 2.85 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "asl-viewer",
"version": "1.1.0",
"description": "React library for viewing AWS Step Functions workflows in the browser",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist/index.js",
"dist/index.esm.js",
"dist/index.d.ts",
"dist/index.css",
"dist/index.esm.css"
],
"scripts": {
"build": "rollup -c",
"build:types": "tsc",
"build:dev": "rollup -c -w",
"test": "jest",
"lint": "eslint src --ext js,ts,tsx",
"format": "prettier --write .",
"check-format": "prettier --check .",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"build-storybook:gh-pages": "NODE_ENV=production storybook build",
"prepare": "yarn build",
"check-publish": "scripts/check-publish-ready.sh",
"prepublishOnly": "yarn test && yarn build"
},
"keywords": [
"aws",
"step-functions",
"workflow",
"react",
"visualization",
"asl"
],
"author": "Cleisson Barbosa",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/cleissonbarbosa/asl-viewer.git"
},
"bugs": {
"url": "https://github.com/cleissonbarbosa/asl-viewer/issues"
},
"homepage": "https://github.com/cleissonbarbosa/asl-viewer#readme",
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@eslint/js": "^9.27.0",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-typescript": "^11.0.0",
"@storybook/addon-docs": "^10.0.8",
"@storybook/addon-links": "^10.0.8",
"@storybook/react-vite": "^10.0.8",
"@types/jest": "^29.0.0",
"@types/js-yaml": "^4.0.9",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"eslint": "^9.27.0",
"eslint-config-prettier": "^10.1.5",
"eslint-config-ts-react-important-stuff": "^3.0.0",
"eslint-plugin-prettier": "^5.4.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-storybook": "10.0.8",
"globals": "^16.2.0",
"jest": "^29.0.0",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.0.0",
"rollup-plugin-dts": "^5.0.0",
"rollup-plugin-postcss": "^4.0.2",
"storybook": "^10.0.8",
"ts-jest": "^29.3.4",
"typescript": "^5.0.0",
"vite": "^6.3.5"
},
"dependencies": {
"@reactflow/background": "^11.0.0",
"@reactflow/controls": "^11.0.0",
"@reactflow/core": "^11.0.0",
"@tabler/icons-react": "^3.33.0",
"js-yaml": "^4.1.0",
"reactflow": "^11.0.0"
}
}