forked from threshold-network/components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.53 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
{
"name": "@threshold-network/components",
"version": "1.0.0-dev",
"description": "React components for Threshold Network.",
"main": "lib/index.ts",
"module": "lib/index.esm.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"src",
"!src/**/*.stories.tsx"
],
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.17.9",
"@chakra-ui/icons": "^1.0.15",
"@chakra-ui/react": "^1.6.7",
"@fontsource/inter": "^4.5.10",
"@keep-network/prettier-config-keep": "github:keep-network/prettier-config-keep#d6ec02e",
"@rollup/plugin-commonjs": "^21.0.3",
"@rollup/plugin-image": "^2.1.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@snek-at/storybook-addon-chakra-ui": "^1.0.0-beta.1",
"@storybook/addon-actions": "^6.4.21",
"@storybook/addon-essentials": "^6.4.21",
"@storybook/addon-interactions": "^6.4.21",
"@storybook/addon-links": "^6.4.21",
"@storybook/react": "^6.4.21",
"@storybook/testing-library": "^0.0.9",
"@types/react": "^17.0.20",
"@types/react-router-dom": "^5.3.2",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"babel-loader": "^8.2.4",
"eslint": "^7.32.0",
"eslint-config-keep": "github:keep-network/eslint-config-keep#0c27ade",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.25.1",
"husky": ">=6",
"lint-staged": ">=10",
"postcss": "^8.4.12",
"prettier": "^2.4.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1",
"react-number-format": "^4.7.3",
"react-router-dom": "6.2.1",
"rollup": "^2.70.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"typescript": "^4.4.3"
},
"peerDependencies": {
"@chakra-ui/icons": "^1.0.15",
"@chakra-ui/react": "^1.6.7",
"@fontsource/inter": "^4.5.10",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1",
"react-number-format": "^4.7.3",
"react-router-dom": "6.2.1"
},
"dependencies": {},
"scripts": {
"build": "rollup -c",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"prepare": "husky install",
"lint": "eslint --ext .js --ext .ts --ext .tsx .",
"lint:fix": "eslint --ext .js --ext .ts --ext .tsx . --quiet --fix",
"format": "yarn lint && prettier --check .",
"format:fix": "yarn lint:fix && prettier --write .",
"pre-commit": "lint-staged"
}
}