-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.98 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.98 KB
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
{
"name": "@hln/design-system",
"description": "React based design system for HLN's current and future projects.",
"repository": {
"type": "git",
"url": "https://github.com/hlnconsulting/design-system.git"
},
"homepage": "https://github.com/hlnconsulting/design-system",
"bugs": {
"url": "https://github.com/hlnconsulting/design-system/issues"
},
"author": "Andrew Slattery <andrew@hln.com>",
"license": "MIT",
"main": "src/index.js",
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-export-default-from": "^7.8.3",
"@babel/plugin-proposal-export-namespace-from": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.8.3",
"@storybook/addon-a11y": "^5.3.3",
"@storybook/addon-actions": "^5.3.3",
"@storybook/addon-docs": "^5.3.3",
"@storybook/addon-knobs": "^5.3.3",
"@storybook/addon-links": "^5.3.3",
"@storybook/addon-storysource": "^5.3.3",
"@storybook/addon-viewport": "^5.3.3",
"@storybook/addons": "^5.3.3",
"@storybook/react": "^5.3.3",
"@storybook/storybook-deployer": "^2.8.1",
"@storybook/theming": "^5.3.3",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"chance": "^1.1.4",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-you-dont-need-lodash-underscore": "^6.7.0",
"jest": "^24.8.0",
"prettier": "^1.18.2",
"rimraf": "^3.0.0",
"storybook-addon-styled-component-theme": "^1.2.5",
"styled-components": "^5.0.0"
},
"dependencies": {
"core-js": "3",
"date-fns": "^2.9.0",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"polished": "^3.4.1",
"prop-types": "^15.7.2",
"react": "^16.9",
"react-content-loader": "^5.0.1",
"react-dom": "^16.9",
"react-number-format": "^4.0.8",
"react-select": "^3.0.4",
"react-table": "^7.0.0-rc.9",
"react-transition-group": "^4.3.0"
},
"peerDependencies": {
"styled-components": ">= 5"
},
"scripts": {
"clean": "rimraf ./dist",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"build": "build-storybook -c .storybook -o public",
"prepublish": "yarn clean && babel src --out-dir dist --ignore \"src/**/*.stories.js\"",
"prepublishOnly": "echo 'prepublishOnly'",
"postpublish": "echo 'postpublish'",
"test": "jest"
},
"version": "0.7.9"
}