-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
144 lines (144 loc) · 3.88 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"name": "@blackbox-vision/react-slot-fill",
"version": "2.0.1",
"private": false,
"description": "React Slot and Fill implementation made with React.createContext API",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"clean": "rimraf pkg && rimraf storybook-static",
"publish": "pika publish",
"build": "npm run clean && pika build",
"test": "jest --passWithNoTests -- -u",
"start": "npm run storybook",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"deploy-storybook": "storybook-to-ghpages"
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-standard-pkg",
{
"exclude": [
"**/*.md",
"**/*.tests.*",
"**/*.stories.*",
"**/__snapshots/*"
]
}
],
[
"@pika/plugin-build-node",
{
"exclude": [
"**/*.md",
"**/*.tests.*",
"**/*.stories.*",
"**/__snapshots/*"
]
}
],
[
"@pika/plugin-build-web",
{
"exclude": [
"**/*.md",
"**/*.tests.*",
"**/*.stories.*",
"**/__snapshots/*"
]
}
],
[
"@pika/plugin-build-types",
{
"exclude": [
"**/*.md",
"**/*.tests.*",
"**/*.stories.*",
"**/__snapshots/*"
]
}
]
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/BlackBoxVision/react-slot-fill.git"
},
"author": "Jonatan E. Salas <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/BlackBoxVision/react-slot-fill/issues"
},
"homepage": "https://github.com/BlackBoxVision/react-slot-fill#readme",
"peerDependencies": {
"react": "^16.3.1"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@pika/pack": "^0.5.0",
"@pika/plugin-build-node": "^0.9.2",
"@pika/plugin-build-types": "^0.9.2",
"@pika/plugin-build-web": "^0.9.2",
"@pika/plugin-standard-pkg": "^0.9.2",
"@storybook/addon-actions": "^5.3.18",
"@storybook/addon-info": "^5.3.18",
"@storybook/addon-links": "^5.3.18",
"@storybook/addons": "^5.3.18",
"@storybook/react": "^5.3.18",
"@storybook/storybook-deployer": "^2.8.5",
"@storybook/theming": "^5.3.18",
"@types/react": "^16.9.32",
"@types/storybook__react": "^5.2.1",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"awesome-typescript-loader": "^5.2.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"chai": "^4.1.2",
"eslint": "^6.8.0",
"eslint-config-react-app": "^5.2.1",
"eslint-import-resolver-lerna": "^1.1.0",
"eslint-plugin-flowtype": "^4.7.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"husky": "^4.2.3",
"isparta": "^4.1.1",
"jest": "^25.2.7",
"lint-staged": "^10.1.1",
"mocha": "^7.1.1",
"prettier": "^2.0.2",
"react": "^16.13.1",
"react-docgen-typescript-loader": "^3.7.2",
"rimraf": "^3.0.2",
"ts-loader": "^6.2.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
],
"*.{js,ts,tsx}": [
"eslint --fix --ext .ts,.tsx,.js",
"git add"
]
},
"dependencies": {}
}