forked from trezor/trezor-suite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.39 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
{
"name": "@trezor/components",
"version": "1.0.0",
"private": true,
"main": "src/index",
"author": "SatoshiLabs s.r.o.",
"license": "SEE LICENSE IN LICENSE.md",
"sideEffects": false,
"scripts": {
"lint": "yarn lint:js && yarn lint:styles",
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
"lint:styles": "npx stylelint './src/**/*{.tsx,.ts}' --cache",
"lint-fix": "npx eslint ./src --fix",
"type-check": "tsc --build tsconfig.json",
"type-check:watch": "yarn type-check -- --watch",
"storybook": "storybook dev -p 9003 -c .storybook",
"storybook-build": "storybook build -c .storybook -o .build-storybook"
},
"dependencies": {
"@tippyjs/react": "^4.2.6",
"@trezor/connect": "workspace:*",
"@trezor/dom-utils": "workspace:*",
"@trezor/env-utils": "workspace:*",
"@trezor/react-utils": "workspace:*",
"@trezor/utils": "workspace:*",
"date-fns": "^2.30.0",
"framer-motion": "^10.12.16",
"lottie-react": "^2.4.0",
"polished": "^4.2.2",
"react": "18.2.0",
"react-date-range": "^1.4.0",
"react-dom": "18.2.0",
"react-intl": "^6.4.4",
"react-select": "^5.7.3",
"react-svg": "^16.1.17",
"react-truncate": "^2.4.0",
"react-use": "^17.4.0",
"styled-components": "^5.3.10",
"tippy.js": "^6.3.7",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"@storybook/addon-actions": "^7.2.3",
"@storybook/addon-controls": "^7.2.3",
"@storybook/addon-knobs": "^7.0.2",
"@storybook/addon-links": "^7.2.3",
"@storybook/addon-viewport": "^7.2.3",
"@storybook/addons": "^7.2.3",
"@storybook/client-api": "^7.2.3",
"@storybook/core": "^6.5.16",
"@storybook/react": "^7.2.3",
"@storybook/react-webpack5": "^7.2.3",
"@types/react": "18.0.32",
"@types/react-date-range": "^1.4.4",
"@types/react-truncate": "^2.3.4",
"@types/styled-components": "^5.1.26",
"jest": "^26.6.3",
"storybook": "^7.2.3",
"stylelint": "14.16.1",
"stylelint-config-recommended": "^9.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0",
"typescript": "4.9.5",
"typescript-styled-plugin": "^0.18.3"
}
}