-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
108 lines (108 loc) · 3.14 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
{
"name": "@bnb-chain/honeycomb",
"version": "0.0.0-development",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/honeycomb.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "start-storybook -p 6006",
"start": "tsdx watch",
"build": "tsdx build && yarn build:font",
"build:font": "node font.config.js",
"test": "tsdx test --env=jsdom --passWithNoTests",
"cypress": "cypress",
"lint": "eslint './src/**/*.{ts,tsx}'",
"format": "prettier --write '**/*.{js,jsx,ts,tsx,css,json,md,mdx,html}'",
"clean": "rimraf .rts2_cache_cjs .rts2_cache_esm dist public storybook-static *.log stats.*",
"semantic-release": "semantic-release"
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"react": ">=16",
"styled-components": "^5.1.0"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"jest": {
"globals": {
"ts-jest": {
"diagnostics": false
}
},
"moduleNameMapper": {
"\\.svg$": "<rootDir>/__mocks__/svgMock.js",
"\\.(jpg|jpeg|png|gif|eot|otf|webp|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js"
}
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@percy/cypress": "^2.3.0",
"@rollup/plugin-image": "^2.0.5",
"@rollup/plugin-url": "^5.0.1",
"@storybook/addon-essentials": "^6.3.12",
"@storybook/addon-storysource": "^6.3.12",
"@storybook/addons": "^6.3.12",
"@storybook/preset-typescript": "^3.0.0",
"@storybook/react": "^6.3.12",
"@svgr/rollup": "^5.5.0",
"@svgr/webpack": "^5.5.0",
"@types/crypto-js": "^3.1.47",
"@types/jest": "^26.0.4",
"@types/js-base64": "^2.3.2",
"@types/nanoid": "^2.1.0",
"@types/qrcode.react": "^1.0.1",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@types/react-modal": "^3.12.0",
"@types/react-table": "^7.0.24",
"@types/react-window": "^1.8.5",
"@types/styled-components": "^5.1.11",
"babel-jest": "^26.1.0",
"babel-loader": "^8.1.0",
"babel-preset-react-app": "^9.1.2",
"cypress": "^4.10.0",
"fork-ts-checker-webpack-plugin": "^5.0.7",
"husky": "^8.0.3",
"prettier": "3.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"rollup-plugin-string": "^3.0.0",
"rollup-plugin-visualizer": "^4.0.4",
"semantic-release": "^21.0.7",
"styled-components": "^5.3.0",
"svg-inline-loader": "^0.8.2",
"ts-loader": "^7.0.5",
"tsdx": "^0.13.2",
"tslib": "^2.1.0",
"typescript": "^3.9.6",
"url-loader": "^4.1.0"
},
"dependencies": {
"@tippyjs/react": "^4.1.0",
"crypto-js": "^4.0.0",
"js-base64": "^2.6.2",
"nanoid": "^3.1.10",
"polished": "^4.1.3",
"qrcode.react": "^1.0.0",
"query-string": "^7.0.1",
"react-modal": "^3.12.1",
"react-spring": "^8.0.27",
"react-table": "^7.6.0",
"react-toastify": "^7.0.1",
"react-window": "^1.8.6",
"swiper": "^6.4.5"
}
}