-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
95 lines (95 loc) · 2.89 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
{
"name": "@dramancompany/remember-ui",
"version": "2.4.13",
"description": "Remember UI Components",
"homepage": "https://dramancompany.github.io/remember-ui/",
"author": "DramanCompany",
"license": "MIT",
"sideEffects": false,
"types": "dist/index.d.ts",
"main": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.umd.js"
}
},
"files": [
"dist",
"README.md",
"index.d.ts"
],
"repository": {
"type": "git",
"url": "https://github.com/dramancompany/remember-ui.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"scripts": {
"build": "rm -rf dist && tsc && vite build",
"pub": "yarn build && npm publish --tag latest",
"pub:beta": "yarn build && npm publish --tag beta",
"tsc": "tsc",
"lint": "eslint . --fix --ext .js,.jsx,.ts,.tsx",
"prettier": "prettier -c src",
"prettier-fix": "prettier --write src",
"storybook": "start-storybook -p 6006",
"storybook-nocache": "start-storybook --no-manager-cache -p 6006",
"build-storybook": "build-storybook -o docs"
},
"dependencies": {
"@tippy.js/react": "^3.1.1",
"body-scroll-lock": "^3.1.5",
"react-draggable": "^4.4.3",
"react-modal": "^3.11.2",
"react-outside-click-handler": "^1.3.0",
"react-text-mask": "^5.4.3",
"react-toastify": "^5.5.0",
"@types/react-modal": "^3.13.1"
},
"devDependencies": {
"@storybook/addon-actions": "^6.5.12",
"@storybook/addon-essentials": "^6.5.12",
"@storybook/addon-interactions": "^6.5.12",
"@storybook/addon-links": "^6.5.12",
"@storybook/addons": "^6.5.12",
"@storybook/builder-vite": "^0.2.2",
"@storybook/react": "^6.5.12",
"@storybook/theming": "^6.5.12",
"@types/body-scroll-lock": "^3.1.0",
"@types/react": "17.0.44",
"@types/react-modal": "^3.13.1",
"@types/react-outside-click-handler": "^1.3.1",
"@types/react-text-mask": "^5.4.11",
"@types/styled-components": "^5.1.25",
"eslint": "^8.23.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.7",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.4",
"prettier": "^2.7.1",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"rollup-plugin-visualizer": "^5.8.1",
"styled-components": "4.4.1",
"typescript": "^4.6.4",
"vite": "^3.0.9",
"vite-plugin-dts": "^1.4.1",
"vite-tsconfig-paths": "^3.5.0"
},
"peerDependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1",
"styled-components": "4.4.1"
},
"bugs": {
"url": "https://github.com/dramancompany/remember-ui/issues"
}
}