forked from binary-com/deriv-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 3.54 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
{
"name": "@deriv/ui",
"version": "0.8.0",
"description": "A UI library developed by Deriv",
"main": "./dist/cjs/components.js",
"module": "./dist/es/components.js",
"types": "./dist/types/src/index.d.ts",
"scripts": {
"start": "npm run storybook",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"build": "npm run clean && tsc && webpack build --env modules='cjs' && webpack build --env modules='es'",
"build:watch": "webpack build --watch",
"prepare": "husky install",
"build_and_publish": "npm run build && npm publish",
"clean": "rimraf dist/*",
"test": "jest",
"test:coverage": "jest --coverage",
"pre-commit-lint": "lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/binary-com/deriv-components.git"
},
"keywords": [
"react",
"library",
"deriv",
"ui"
],
"author": "Deriv",
"license": "MIT",
"bugs": {
"url": "https://github.com/binary-com/deriv-components/issues"
},
"homepage": "https://github.com/binary-com/deriv-components#readme",
"devDependencies": {
"@babel/core": "^7.18.13",
"@node-minify/clean-css": "^7.0.0",
"@node-minify/core": "^7.0.0",
"@storybook/addon-a11y": "^6.5.10",
"@storybook/addon-actions": "^6.5.10",
"@storybook/addon-docs": "^6.5.10",
"@storybook/addon-essentials": "^6.5.10",
"@storybook/addon-links": "^6.5.10",
"@storybook/builder-webpack5": "^6.5.10",
"@storybook/manager-webpack5": "^6.5.10",
"@storybook/react": "^6.5.10",
"@svgr/webpack": "^6.5.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.1.5",
"@types/jest": "^28.1.1",
"@types/node": "^18.7.14",
"@types/react": "^17.0.48",
"@types/webpack": "^5.28.0",
"@types/zxcvbn": "^4.4.1",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"babel-loader": "^8.2.5",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.1",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^7.2.13",
"hash-generator": "^0.1.0",
"husky": "^8.0.1",
"jest": "^28.0.0",
"jest-css-modules-transform": "^4.4.2",
"jest-environment-jsdom": "^29.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"sass": "^1.54.7",
"sass-loader": "^13.0.2",
"svgo": "^2.8.0",
"ts-jest": "^28.0.8",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.1",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^4.5.5",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.10.1",
"zxcvbn": "^4.4.2"
},
"dependencies": {
"@radix-ui/react-checkbox": "^1.0.0",
"@radix-ui/react-dialog": "^1.0.0",
"@radix-ui/react-radio-group": "^1.0.0",
"@radix-ui/react-switch": "^1.0.0",
"@radix-ui/react-tabs": "^1.0.0",
"@radix-ui/react-tooltip": "^1.0.0",
"@stitches/react": "^1.2.8",
"classnames": "^2.3.1"
},
"peerDependencies": {
"react": "^16.0.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0"
}
}