-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
120 lines (120 loc) · 3.53 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": "themeprovider-storybook",
"version": "1.8.0",
"description": "Use your styled-components themes on your favourite storybook",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"lint": "eslint 'src/**/*.ts' 'src/**/*.tsx'",
"storybook": "cd example && npm run storybook",
"watch:tsc": "tsc -w",
"dev": "concurrently --kill-others \"npm run watch:tsc\" \"npm run storybook\"",
"build": "rimraf dist && tsc && cp ./package.json README.md dist",
"test": "jest",
"bundle-size": "bundlesize",
"release": "semantic-release --debug",
"publish-storybook": "cd example && npm i && npm i --save themeprovider-storybook@latest && npm run build-storybook"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"bundlesize": [
{
"path": "dist/**/*.{js,d.ts}",
"maxSize": "10 KB",
"compression": "none"
}
],
"dependencies": {
"react-json-view": "^1.21.3",
"styled-react-modal": "^2.0.1",
"global": "^4.4.0",
"qss": "^2.0.3"
},
"peerDependencies": {
"@storybook/addons": "^5.x.x || ^6.x.x",
"@storybook/react": "^5.x.x || ^6.x.x",
"react": "^16.x || ^17.x",
"styled-components": "^4.x.x || ^5.x.x"
},
"devDependencies": {
"@babel/core": "^7.11.4",
"@babel/preset-env": "^7.11.0",
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@storybook/addon-docs": "^6.0.16",
"@storybook/addons": "^5.3.18",
"@storybook/react": "^5.3.18",
"@types/enzyme": "3.1.10",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^26.0.10",
"@types/node": "^14.6.0",
"@types/react": "^16.9.46",
"@types/react-dom": "^16.9.8",
"@types/sinon": "4.3.1",
"@types/styled-components": "^5.1.2",
"@types/styled-react-modal": "^1.2.0",
"@typescript-eslint/eslint-plugin": "^3.10.0",
"@typescript-eslint/parser": "^3.10.0",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.1.0",
"bundlesize": "^0.18.0",
"concurrently": "^5.3.0",
"core-js": "^3.6.5",
"cz-conventional-changelog": "^3.2.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.3",
"enzyme-to-json": "^3.5.0",
"eslint": "^7.7.0",
"eslint-plugin-react": "^7.20.6",
"fork-ts-checker-webpack-plugin": "^5.1.0",
"global": "^4.4.0",
"husky": "^4.2.5",
"jest": "^26.4.2",
"qss": "^2.0.3",
"react": "^16.12.0",
"react-dom": "^16.13.1",
"react-json-view": "^1.21.3",
"react-scripts": "^3.4.3",
"rimraf": "^3.0.2",
"semantic-release": "^17.1.1",
"sinon": "^9.0.3",
"styled-components": "^5.0.1",
"ts-jest": "^26.2.0",
"ts-loader": "^8.0.3",
"typescript": "^4.1.3"
},
"repository": {
"type": "git",
"url": "https://github.com/semoal/themeprovider-storybook.git"
},
"keywords": [
"storybook",
"styled-components",
"emotion",
"themeprovider",
"themeprovider-storybook",
"theme-provider",
"react",
"typescript"
],
"author": " <Sergio Moreno>",
"license": "MIT",
"bugs": {
"url": "https://github.com/semoal/themeprovider-storybook/issues"
},
"homepage": "https://github.com/semoal/themeprovider-storybook#readme",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}