-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
82 lines (82 loc) · 2.45 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
{
"name": "@helix-design-system/helix-react",
"version": "2.1.0",
"description": "React components to wrap HelixUI Web Components Library",
"source": "src/index.mjs",
"main": "dist/helix-react.js",
"module": "dist/helix-react.esm.js",
"unpkg": "dist/helix-react.js",
"files": [
"dist/"
],
"scripts": {
"install:clean": "rm -rf node_modules && yarn install",
"build": "microbundle -i src/index.mjs --external react,react-dom --name HelixReact --jsx React.createElement --jsxFragment React.Fragment --compress false --sourcemap false",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "yarn storybook",
"docs": "build-storybook -c .storybook -o public",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"prettify": "prettier --config prettier.config.js --write 'src/**/*.{js,jsx,json,css,scss}'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HelixDesignSystem/helix-react.git"
},
"author": "Helix Design System Helix-React Team",
"contributors": [
"Mike Mangialardi",
"James Thompson",
"Cathy Siller",
"Nicko Winner-Arroyo",
"Ryan A. Johnson",
"Ana-Sophia Brande",
"Javed Khan"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/HelixDesignSystem/helix-react/issues"
},
"homepage": "https://helix-react.netlify.app",
"publishConfig": {
"access": "public",
"scope": "@helix-design-system"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.10.4",
"@babel/runtime-corejs2": "^7.9.0",
"@storybook/addon-actions": "^5.3.18",
"@storybook/addon-centered": "^5.3.18",
"@storybook/addon-knobs": "5.3.17",
"@storybook/addon-links": "^5.3.17",
"@storybook/addon-options": "5.3.17",
"@storybook/addon-viewport": "5.3.17",
"@storybook/addons": "^5.3.17",
"@storybook/react": "^5.3.17",
"babel-loader": "^8.1.0",
"helix-ui": "^2.0.0",
"husky": "^4.2.5",
"microbundle": "^0.12.3",
"prettier": "^2.0.4",
"prop-types": "^15.7.2",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"storybook-addon-jsx": "^7.3.4"
},
"dependencies": {
"classnames": "^2.x",
"use-onclickoutside": "^0.3"
},
"peerDependencies": {
"helix-ui": "^2.0.0",
"prop-types": "^15.7.2",
"react": "^16.6.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run prettify"
}
}
}