-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
141 lines (141 loc) · 5.12 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "@input-output-hk/lace-ui-toolkit",
"version": "1.24.0",
"description": "Lace UI Toolkit",
"homepage": "https://github.com/input-output-hk/lace-ui-toolkit/blob/main/README.md",
"bugs": {
"url": "https://github.com/input-output-hk/lace-ui-toolkit/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/input-output-hk/lace-ui-toolkit.git"
},
"files": [
"LICENSE",
"README.md",
"dist",
"package.json"
],
"license": "Apache-2.0",
"author": "IOHK",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "yarn build:icons && rollup -c rollup.config.js",
"build:icons": "svgr ./src/icons/raw --out-dir ./src/icons --typescript",
"build-storybook": "NODE_OPTIONS=--openssl-legacy-provider; build-storybook",
"cleanup": "yarn run cleanup:dist && yarn run cleanup:nm",
"cleanup:dist": "yarn exec rm -rf dist",
"cleanup:nm": "yarn exec rm -rf node_modules",
"dev": "yarn storybook",
"format": "yarn prettier --write .",
"format-check": "yarn prettier --check .",
"lint": "yarn eslint --ext .ts,.tsx,.js,.jsx .",
"lint:fix": "yarn eslint --ext .ts,.tsx,.js,.jsx --fix .",
"storybook": "NODE_OPTIONS=--openssl-legacy-provider; start-storybook -p 6006",
"test": "echo \"No test command specified\"",
"test-storybook": "test-storybook",
"test-storybook:ci": "NODE_OPTIONS=--openssl-legacy-provider; export STORYBOOK_TEST=1; concurrently -k -s first -n \"SB,TEST\" -c \"magenta,blue\" \"yarn build-storybook && http-server storybook-static --port 6006\" \"wait-on http://127.0.0.1:6006/ && yarn test-storybook\"",
"type-check": "tsc --noEmit",
"watch": "yarn build --watch",
"watch:pub": "YALC_PUBLISH=true yarn run watch"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"dependencies": {
"@radix-ui/react-alert-dialog": "^1.0.4",
"@radix-ui/react-avatar": "^1.0.2",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-collapsible": "^1.0.3",
"@radix-ui/react-dialog": "^1.0.4",
"@radix-ui/react-form": "^0.0.3",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-progress": "^1.0.3",
"@radix-ui/react-radio-group": "^1.1.3",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-select": "1.2.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-tabs": "^1.0.3",
"@radix-ui/react-toast": "^1.0.3",
"@radix-ui/react-toggle-group": "^1.0.4",
"@radix-ui/react-tooltip": "^1.0.6",
"@vanilla-extract/css": "1.11.1",
"@vanilla-extract/css-utils": "0.1.3",
"@vanilla-extract/recipes": "0.5.1",
"@vanilla-extract/sprinkles": "1.5.1",
"antd": "4.24.12",
"classnames": "^2.3.2",
"lodash": "^4.17.21",
"polished": "^4.2.2",
"react-responsive": "^9.0.2",
"react-virtuoso": " 4.6.3",
"recharts": "^2.6.2"
},
"devDependencies": {
"@babel/cli": "^7.22.10",
"@babel/core": "^7.21.0",
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@rollup/plugin-commonjs": "20.0.0",
"@rollup/plugin-image": "2.1.1",
"@rollup/plugin-node-resolve": "13.0.4",
"@rollup/plugin-typescript": "^11.1.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@storybook/addon-actions": "^6.5.16",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-interactions": "^6.5.16",
"@storybook/addon-links": "^6.5.16",
"@storybook/builder-webpack5": "6.5.16",
"@storybook/jest": "^0.0.10",
"@storybook/manager-webpack5": "6.5.16",
"@storybook/react": "^6.5.16",
"@storybook/test-runner": "^0.10.0",
"@storybook/testing-library": "^0.0.13",
"@svgr/cli": "^8.1.0",
"@svgr/rollup": "^6.1.2",
"@svgr/webpack": "^6.5.1",
"@types/react": "^18.3.3",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"@vanilla-extract/rollup-plugin": "1.3.6",
"@vanilla-extract/webpack-plugin": "2.3.10",
"babel-loader": "^8.3.0",
"chromatic": "6.10.2",
"concurrently": "^8.0.1",
"eslint": "^8.33.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-boundaries": "^3.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-max-params-no-constructor": "^0.0.4",
"eslint-plugin-prefer-arrow-functions": "^3.1.4",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "7.31.8",
"eslint-plugin-storybook": "^0.6.11",
"http-server": "^14.1.1",
"husky": "^8.0.3",
"jest-image-snapshot": "^6.1.0",
"lint-staged": "^13.2.2",
"prettier": "3.2.5",
"react": "17.0.2",
"react-dom": "17.0.2",
"rollup": "2.79.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-shell": "^1.0.9",
"semantic-release": "^21.0.2",
"storybook": "7.6.7",
"storybook-addon-pseudo-states": "^1.15.2",
"typescript": "^4.9.5",
"url-loader": "^4.1.1",
"utility-types": "^3.10.0",
"wait-on": "^7.0.1",
"webpack": "^5.76.1",
"webpack-dev-server": "^4.11.1"
},
"peerDependencies": {
"react": ">=17.0.2",
"react-dom": ">=17.0.2"
}
}