-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.25 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
{
"name": "react-minimal-gallery",
"version": "1.3.0",
"description": "A minimalist image gallery package build with tailwincss for simple projects",
"main": "./dist/index.js",
"author": "Samara Carvalho",
"license": "MIT",
"types": "./dist/index.d.ts",
"readmeFilename": "README.md",
"homepage": "https://scarvalhos.github.io/react-minimal-gallery",
"repository": {
"type": "git",
"url": "git+https://github.com/scarvalhos/react-minimal-gallery"
},
"keywords": [
"react",
"gallery",
"carousel",
"images",
"react-gallery",
"gallery-images",
"react-images",
"react-component",
"react-slideshow",
"react images",
"react slideshow",
"react gallery",
"image gallery",
"image carousel"
],
"files": [
"dist/**/*",
"src/**/*"
],
"scripts": {
"build": "rm -rf dist/ && tsc && rollup -c && npx tailwindcss -o ./dist/styles.css && cp ./src/types ./dist -r",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"format": "prettier --write \"./src/**/*.{ts,tsx}\"",
"format:check": "prettier --check \"./src/**/*.{ts,tsx}\""
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/preset-env": "^7.19.3",
"@babel/preset-react": "^7.18.6",
"@rollup/plugin-node-resolve": "^11.1.1",
"@rollup/plugin-sucrase": "^4.0.4",
"@rollup/plugin-typescript": "^8.5.0",
"@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/addon-postcss": "^2.0.0",
"@storybook/builder-webpack5": "^6.5.12",
"@storybook/manager-webpack5": "^6.5.12",
"@storybook/react": "^6.5.12",
"@storybook/testing-library": "^0.0.13",
"@types/graceful-fs": "^4.1.5",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"autoprefixer": "^10.4.12",
"babel-loader": "^8.2.5",
"babel-plugin-transform-require-ignore": "^0.1.1",
"css-loader": "^6.7.1",
"mini-css-extract-plugin": "^2.6.1",
"postcss": "^8.4.17",
"postcss-cli": "^10.0.0",
"postcss-import": "^15.0.0",
"postcss-loader": "^7.0.1",
"postcss-nesting": "^10.2.0",
"postcss-preset-env": "^7.8.2",
"react-refresh": "^0.14.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.34.1",
"style-loader": "^3.3.1",
"tailwindcss": "^3.1.8",
"ts-loader": "^9.4.1",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"tslib": "^2.4.0",
"typescript": "^4.8.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "7.31.8",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^2.79.1"
},
"resolutions": {
"webpack": "^5"
}
}