-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
78 lines (78 loc) · 2.12 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
{
"name": "gif-picker-react",
"description": "Tenor Gif Picker for React",
"version": "1.4.0",
"author": "MrBartusek <bartosz@dokurno.dev>",
"license": "MIT",
"keywords": [
"react",
"tenor",
"gif"
],
"repository": {
"type": "git",
"url": "git+https://github.com/MrBartusek/gif-picker-react.git"
},
"homepage": "https://dokurno.dev/gif-picker-react",
"scripts": {
"start": "tsup --watch",
"build": "tsup",
"storybook": "storybook dev -p 6006",
"lint": "eslint src",
"lint:fix": "npm run lint -- --fix",
"version": "npm run build",
"update-example": "npm install && cd example && npm update gif-picker-react && npm install && cd .."
},
"engines": {
"npm": ">=8.0.0",
"node": ">=16.0.0"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"files": [
"dist"
],
"devDependencies": {
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@storybook/addon-actions": "^7.0.23",
"@storybook/addon-docs": "^7.0.23",
"@storybook/addon-essentials": "^7.0.23",
"@storybook/addon-interactions": "^7.0.23",
"@storybook/addon-links": "^7.0.23",
"@storybook/jest": "^0.1.0",
"@storybook/react": "^7.0.23",
"@storybook/react-webpack5": "7.0.23",
"@storybook/testing-library": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"autoprefixer": "^10.4.20",
"cssnano": "^7.0.6",
"eslint": "^8.43.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-storybook": "^0.6.12",
"postcss": "^8.4.47",
"postcss-inline-svg": "^6.0.0",
"postcss-svgo": "^7.0.1",
"prettier": "3.3.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"storybook": "7.0.23",
"storybook-dark-mode": "^3.0.0",
"tsup": "^8.3.0",
"typescript": "^5.6.2"
},
"peerDependencies": {
"react": ">=17",
"react-dom": ">=17"
}
}