-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.32 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
{
"name": "etherspot-ui",
"version": "0.1.0",
"description": "An etherspot UI package",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"browser": "dist/index.cjs.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "jest __tests__ --silent",
"test:watch": "jest __tests__ --watch",
"prepare": "npm run rollup:build",
"build:css": "postcss src/index.css --output dist/esm/types/index.css",
"postinstall": "rm -rf node_modules/react node_modules/react-dom",
"rollup:build": "npm run build:css && NODE_OPTIONS=--max-old-space-size=8192 rollup -c",
"rollup:watch": "rimraf ./node_modules/react ./node_modules/react-dom && rollup -c -w",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"keywords": [],
"author": "Etherspot Team",
"license": "MIT",
"dependencies": {
"@etherspot/transaction-kit": "0.6.11",
"@headlessui/react": "^1.7.17",
"@heroicons/react": "^2.1.1",
"@tippyjs/react": "4.2.6",
"autoprefixer": "^10.4.16",
"ethers": "5.4.0",
"lodash": "4.17.21",
"moment": "2.29.4",
"postcss": "8.4.32",
"postcss-import": "15.1.0",
"react-content-loader": "6.2.1",
"react-icons": "4.4.0",
"react-ios-switch": "0.1.19",
"react-router-dom": "6.15.0",
"react-spinners": "0.13.2",
"reflect-metadata": "0.1.13",
"rollup-plugin-postcss": "4.0.2",
"rxjs": "6.6.7",
"styled-components": "5.3.5",
"tailwindcss": "3.0.3"
},
"devDependencies": {
"@babel/core": "7.23.3",
"@babel/preset-env": "7.23.3",
"@babel/preset-react": "7.23.3",
"@babel/preset-typescript": "7.18.6",
"@jest/globals": "^29.3.1",
"@rollup/plugin-commonjs": "22.0.0",
"@rollup/plugin-node-resolve": "13.3.0",
"@rollup/plugin-replace": "5.0.1",
"@rollup/plugin-typescript": "8.3.3",
"@storybook/addon-essentials": "^7.6.4",
"@storybook/addon-interactions": "^7.6.4",
"@storybook/addon-links": "^7.6.4",
"@storybook/addon-onboarding": "^1.0.10",
"@storybook/blocks": "^7.6.4",
"@storybook/react": "^7.6.4",
"@storybook/react-vite": "^7.6.4",
"@storybook/test": "^7.6.4",
"@testing-library/react": "14.0.0",
"@types/jest": "^29.5.11",
"@types/react": "18.0.15",
"@typescript-eslint/eslint-plugin": "6.7.0",
"@typescript-eslint/parser": "6.7.0",
"babel-jest": "29.3.1",
"babel-loader": "9.1.3",
"babel-plugin-module-resolver": "^5.0.0",
"chokidar": "3.5.3",
"css-loader": "^6.8.1",
"cssnano": "5.1.14",
"dotenv": "16.0.3",
"eslint": "8.54.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-storybook": "^0.6.15",
"jest": "29.3.1",
"jest-environment-jsdom": "^29.7.0",
"postcss": "8.4.6",
"postcss-cli": "9.0.1",
"postcss-import": "14.0.2",
"postcss-reporter": "7.0.4",
"prettier": "3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "18.2.0",
"rollup": "2.76.0",
"rollup-plugin-dts": "4.2.2",
"rollup-plugin-peer-deps-external": "2.2.4",
"rollup-plugin-terser": "7.0.2",
"storybook": "7.6.4",
"tailwindcss": "3.0.23",
"typescript": "4.9.5",
"webpack": "5.89.0",
"webpack-cli": "5.1.4"
},
"peerDependencies": {
"react": ">=16.8.6"
}
}