-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
110 lines (110 loc) · 3.15 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
{
"name": "react-dismissable-layers",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"version": "0.4.2",
"description": "React dismissable context and hook with layers (nesting) support",
"exports": {
".": {
"import": {
"types": "./esm/index.d.ts",
"default": "./esm/index.js"
},
"require": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
}
}
},
"types": "./lib/index.d.ts",
"main": "./lib/index.js",
"module": "./esm/index.js",
"sideEffects": false,
"files": [
"lib/",
"esm/"
],
"scripts": {
"start": "yarn storybook",
"lint": "eslint \"**/*.{ts,tsx}\"",
"lint:fix": "yarn lint --fix",
"lint:types": "tsc --noEmit",
"prepare": "husky install",
"build:es": "tsc",
"build:cjs": "tsc -m commonjs --outDir lib",
"build": "yarn build:cjs && yarn build:es",
"clean": "rimraf lib storybook-static esm",
"storybook": "start-storybook -p 6006",
"storybook:build": "build-storybook",
"storybook:upload": "gh-pages -d storybook-static --git \"$(which git)\"",
"storybook:clean": "rimraf storybook-static",
"release": "semantic-release"
},
"repository": "git+https://github.com/voiceflow/react-dismissable-layers.git",
"bugs": {
"url": "https://github.com/voiceflow/react-dismissable-layers/issues"
},
"homepage": "https://github.com/voiceflow/react-dismissable-layers#readme",
"keywords": [
"voiceflow",
"react",
"context",
"hook",
"dismiss",
"dismiss layers",
"dismissable"
],
"author": "@voiceflow - Evgeny Zaytsev [z4o4z]",
"license": "MIT",
"peerDependencies": {
"react": "^16.0.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@babel/core": "^7.18.9",
"@popperjs/core": "^2.11.5",
"@storybook/addon-actions": "^6.5.9",
"@storybook/addon-essentials": "^6.5.9",
"@storybook/addon-links": "^6.5.9",
"@storybook/builder-vite": "^0.2.2",
"@storybook/react": "^6.5.9",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@types/styled-components": "^5.1.25",
"@vitejs/plugin-react": "^2.0.0",
"@voiceflow/commitlint-config": "2.0.0",
"@voiceflow/eslint-config": "6.1.0",
"@voiceflow/prettier-config": "1.2.1",
"@voiceflow/semantic-release-config": "1.1.0",
"@voiceflow/stylelint-config": "1.0.1",
"@voiceflow/tsconfig": "1.4.8",
"@voiceflow/vite-config": "^1.5.3",
"@zerollup/ts-transform-paths": "^1.7.18",
"babel-loader": "^8.2.5",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.20.0",
"fixpack": "^4.0.0",
"gh-pages": "^4.0.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"prettier-stylelint": "^0.4.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-popper": "^2.3.0",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.3",
"styled-components": "^5.3.5",
"typescript": "^4.7.4",
"vite": "^3.0.3"
},
"dependencies": {},
"volta": {
"node": "16.13.0",
"yarn": "1.22.21"
}
}