-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.86 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.86 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@leadhome/oxygen",
"version": "0.6.6",
"description": "A react component library",
"main": "build/oxygen.js",
"module": "build/oxygen.js",
"scripts": {
"commit": "npx git-cz",
"storybook": "start-storybook -p 9001 -c .storybook",
"deploy-storybook": "storybook-to-ghpages",
"lint": "eslint -c .eslintrc src",
"build-storybook": "build-storybook",
"semantic-release": "semantic-release",
"start": "npm run storybook",
"prebuild": "npm run clean",
"build": "webpack --mode production --config webpack/config.js",
"clean": "rimraf build"
},
"keywords": [
"React component lib",
"Styled Components"
],
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"repository": {
"type": "git",
"url": "https://github.com/leadhomesa/oxygen.git"
},
"author": "Leadhome",
"license": "MIT",
"bugs": {
"url": "https://github.com/leadhomesa/oxygen/issues"
},
"homepage": "https://github.com/leadhomesa/oxygen#readme",
"peerDependencies": {
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-router-dom": "^5.1.2",
"styled-components": ">= 4",
"styled-icons": "^9.1.0"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/plugin-external-helpers": "^7.7.4",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-optional-chaining": "^7.7.5",
"@babel/plugin-syntax-dynamic-import": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.7.7",
"@babel/preset-react": "^7.7.4",
"@leadhome/eslint-config": "^1.4.0",
"@storybook/addon-actions": "^5.2.8",
"@storybook/addon-info": "^5.2.8",
"@storybook/addon-knobs": "^5.2.8",
"@storybook/addon-links": "^5.2.8",
"@storybook/addons": "^5.2.8",
"@storybook/react": "^5.2.8",
"@storybook/storybook-deployer": "^2.8.1",
"@svgr/webpack": "^4.3.3",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-inline-react-svg": "^1.1.0",
"babel-plugin-styled-components": "^1.10.6",
"babel-plugin-transform-inline-environment-variables": "^0.4.3",
"cz-conventional-changelog": "^3.0.2",
"eslint-plugin-react-hooks": "^2.3.0",
"file-loader": "^5.0.2",
"husky": "^3.1.0",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-router-dom": "^5.1.2",
"rimraf": "^3.0.0",
"semantic-release": "^15.13.31",
"storybook-react-router": "^1.0.8",
"styled-components": "^4.3.2",
"styled-icons": "^9.1.0",
"webpack": "^4.41.4",
"webpack-cli": "^3.3.10"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"branch": "next"
},
"dependencies": {
"deprecated-prop-type": "^1.0.0"
}
}