-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
81 lines (81 loc) · 2.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
{
"name": "react-responsive-gallery",
"type": "module",
"version": "4.0.0",
"description": "React responsive gallery",
"files": [
"dist"
],
"main": "./dist/react-responsive-gallery.js",
"module": "./dist/react-responsive-gallery.js",
"repository": {
"type": "git",
"url": "https://github.com/OriAmir/React-Responsive-Gallery"
},
"private": false,
"keywords": [
"react",
"react-gallery",
"react-responsive-gallery"
],
"scripts": {
"dev": "npm run build -- --watch",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint './src/**/*.{js,ts,tsx}'",
"test": "jest",
"prettier": "./node_modules/.bin/prettier --write 'src/**/*.{js,jsx,ts,tsx,json,css,scss,md}'",
"prepare": "husky install",
"pre-commit": "lint-staged"
},
"author": {
"name": "Ori Amir"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"typings": "dist/declarations/index.d.ts",
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.22.10",
"@testing-library/jest-dom": "^6.0.1",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.3",
"@types/node": "^20.5.1",
"@types/react": "^18.2.20",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"@vitejs/plugin-react": "^4.0.4",
"babel-eslint": "^10.1.0",
"babel-jest": "^29.6.2",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-testing-library": "^6.0.0",
"husky": "^8.0.3",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"lint-staged": "^14.0.0",
"prettier": "^3.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "1.66.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"vite": "^4.4.9",
"vite-plugin-dts": "3.5.2",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-libcss": "^1.1.1",
"vite-tsconfig-paths": "^4.2.0"
},
"dependencies": {
"styled-components": "^6.0.7",
"yet-another-react-lightbox": "^3.12.1"
}
}