-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 loc) · 3.94 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
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "hazel-ui",
"version": "0.0.22",
"description": "A flexible React component library.",
"main": "dist/index.js",
"files": [
"dist/"
],
"private": false,
"bugs": "https://github.com/hazel-ui/hazel-ui/issues",
"homepage": "https://hazel-ui.github.io/hazel-ui",
"repository": {
"type": "git",
"url": "https://github.com/hazel-ui/hazel-ui.git"
},
"scripts": {
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook -o ./dist-storybook --quiet",
"serve-storybook": "npx http-server ./dist-storybook",
"clean:css": "cd src/package && cleancss -o static/styles.css foundation/Theme/styles/*.css",
"lint": "npx eslint . --ext .js,.jsx,.ts,.tsx",
"prettier": "prettier --check \"{.storybook,public,src}/**/*.{js,jsx,ts,tsx,json,yml,md,mdx}\"",
"prettier:fix": "prettier --write \"{.storybook,public,src}/**/*.{js,jsx,ts,tsx,json,yml,md,mdx}\"",
"predev": "npm run clean:css",
"dev": "webpack serve --open --config webpack.dev.mjs",
"build": "webpack --config webpack.prod.mjs",
"start": "npx http-server ./build",
"test": "echo \"Error: no test specified\" && exit 0",
"build:package": "rm -rf dist && mkdir dist && cd src/package && tsc",
"postbuild:package": "copyfiles -u 3 \"src/package/static/**/*\" dist",
"prepublishOnly": "npm run build:package",
"predeploy": "npm run build-storybook",
"deploy": "gh-pages -d ./dist-storybook"
},
"dependencies": {
"@bbc/gel-foundations": "^6.0.0",
"@radix-ui/react-tabs": "^0.0.13",
"@styled-icons/boxicons-regular": "^10.23.0",
"@styled-icons/boxicons-solid": "^10.37.0",
"rc-slider": "^9.7.2",
"react-select": "^3.1.1",
"react-table": "^7.5.2",
"react-toastify": "^6.1.0",
"styled-components": "^5.2.0",
"styled-system": "^5.1.5"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/plugin-transform-react-jsx": "^7.14.3",
"@storybook/addon-actions": "^6.2.9",
"@storybook/addon-essentials": "^6.2.9",
"@storybook/addon-links": "^6.2.9",
"@storybook/builder-webpack5": "^6.2.9",
"@storybook/manager-webpack5": "^6.4.0-alpha.19",
"@storybook/react": "^6.2.9",
"@svgr/webpack": "^5.5.0",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@types/jest": "^26.0.16",
"@types/node": "^14.14.27",
"@types/react": "^17.0.9",
"@types/react-dom": "^17.0.6",
"@types/react-select": "^3.0.28",
"@types/react-table": "^7.0.24",
"@types/styled-components": "^5.1.3",
"@types/styled-system": "^5.1.10",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"babel-loader": "^8.2.2",
"clean-css-cli": "^5.3.0",
"copyfiles": "^2.4.1",
"css-loader": "^5.2.6",
"dotenv-webpack": "^7.0.3",
"eslint": "^7.31.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.7",
"eslint-plugin-jest-formatting": "^3.0.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-unicorn": "^34.0.1",
"gh-pages": "^3.1.0",
"html-webpack-plugin": "^5.3.1",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"style-loader": "^2.0.0",
"ts-loader": "^9.2.2",
"typescript": "^4.3.5",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"keywords": [
"react",
"ui",
"library",
"design-system",
"react-components",
"components",
"styled-components"
],
"author": "Abhijeet Singh",
"license": "MIT"
}