-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
96 lines (96 loc) · 3.2 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
{
"name": "@tableflow/ui-library",
"version": "1.71.0",
"description": "A library of frontend components used by TableFlow",
"repository": {
"type": "git",
"url": "git+https://github.com/tableflowhq/ui-library.git"
},
"keywords": [
"tableflow",
"ui-library"
],
"author": "TableFlow",
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"bugs": {
"url": "https://github.com/tableflowhq/ui-library/issues"
},
"homepage": "https://github.com/tableflowhq/ui-library#readme",
"main": "build/index.js",
"module": "build/index.esm.js",
"files": [
"build"
],
"types": "build/index.d.ts",
"scripts": {
"build": "rollup -c",
"build:watch": "rollup -c -w",
"test": "jest",
"test:watch": "jest --watch",
"storybook": "storybook dev -p 6006",
"storybook:export": "storybook build",
"generate": "node ./util/create-component",
"prepublishOnly": "npm run build",
"build-storybook": "storybook build"
},
"peerDependencies": {
"react": ">=18.2.0",
"react-dom": ">=18.2.0",
"zustand": "^4.3.8"
},
"devDependencies": {
"@babel/preset-env": "^7.22.4",
"@babel/preset-react": "^7.22.3",
"@babel/preset-typescript": "^7.21.5",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-image": "^2.1.1",
"@rollup/plugin-node-resolve": "^11.2.1",
"@storybook/addon-essentials": "7.0.18",
"@storybook/addon-interactions": "7.0.18",
"@storybook/addon-links": "7.0.18",
"@storybook/addon-styling": "^1.0.8",
"@storybook/blocks": "7.0.18",
"@storybook/react": "7.0.18",
"@storybook/react-webpack5": "7.0.18",
"@storybook/testing-library": "0.0.14-next.2",
"@svgr/rollup": "^8.0.1",
"@svgr/webpack": "^8.0.1",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/use-sync-external-store": "0.0.3",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"core-js": "^3.22.7",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"identity-obj-proxy": "^3.0.0",
"prettier": "^2.8.6",
"prop-types": "^15.8.1",
"react": ">=18.2.0",
"react-dom": ">=18.2.0",
"react-focus-lock": "^2.9.4",
"rollup": "^2.56.3",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^3.1.8",
"rollup-plugin-typescript2": "^0.29.0",
"sass": "^1.62.1",
"sass-loader": "^10.2.0",
"storybook": "7.0.18",
"style-loader": "^2.0.0",
"svg-react-loader": "^0.4.6",
"typescript": "^4.5.5",
"typescript-plugin-css-modules": "^3.4.0",
"use-sync-external-store": "^1.2.0",
"zustand": "^4.3.8"
},
"dependencies": {
"babel-plugin-inline-react-svg": "^2.0.2",
"tslib": "^2.5.3"
}
}