-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
141 lines (141 loc) · 4.85 KB
/
package.json
File metadata and controls
141 lines (141 loc) · 4.85 KB
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "mediaflow",
"version": "1.0.0",
"private": true,
"type": "commonjs",
"scripts": {
"dev": "concurrently \"npm run dev:client\" \"npm run dev:server\"",
"dev:client": "vite --config vite.config.client.ts --port 5173",
"dev:server": "cross-env NODE_ENV=development tsx watch --ignore 'vite.config.*' --ignore '*.timestamp-*' --clear-screen=false server.ts",
"build": "npm run clean && npm run build:client && npm run build:server",
"build:client": "vite build --config vite.config.client.ts",
"build:server": "vite build --config vite.config.server.ts",
"start": "cross-env NODE_ENV=production node dist/server/entry-server.js",
"typecheck": "tsc --noEmit",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"lint:report": "eslint . --ext .js,.jsx,.ts,.tsx --output-file eslint_report.json --format json",
"clean": "rimraf dist",
"validate": "npm run lint && npm run typecheck && npm run test",
"preinstall": "node ./scripts/check-engines.js",
"postinstall": "npm run validate:deps",
"validate:deps": "npm ls",
"check:circular": "madge --circular --extensions ts,tsx ./src",
"check:unused": "depcheck",
"prepare": "husky install",
"format": "prettier --write .",
"format:check": "prettier --check .",
"precommit": "lint-staged",
"prune-unused": "npm uninstall @types/classnames classnames gl-matrix image-size @types/image-size lottie-react node-cache react-dropzone react-infinite-scroll-component react-intersection-observer react-masonry-list react-photo-album react-responsive-masonry react-spring uuid zod && npm prune"
},
"keywords": [
"media",
"gallery",
"image viewer",
"fast",
"lightweight"
],
"author": "",
"license": "ISC",
"description": "A fast and lightweight media gallery application focused on efficient image viewing and organization.",
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@tabler/icons-react": "^3.14.0",
"@tanstack/query-async-storage-persister": "^5.75.0",
"@tanstack/query-persist-client-core": "^5.75.0",
"@tanstack/react-query": "^5.73.3",
"@tanstack/react-query-devtools": "^5.66.8",
"@tanstack/react-query-persist-client": "^5.75.1",
"@tanstack/react-virtual": "^3.13.6",
"@types/lru-cache": "^7.10.9",
"@types/rbush": "^4.0.0",
"@types/react-slick": "^0.23.13",
"@types/uuid": "^10.0.0",
"axios": "^1.7.5",
"comlink": "^4.4.2",
"culori": "^4.0.1",
"dotenv": "^16.4.7",
"express": "^4.19.2",
"fast-average-color": "^9.5.0",
"formidable": "^3.5.1",
"framer-motion": "^11.5.4",
"gsap": "^3.12.5",
"idb": "^8.0.0",
"idb-keyval": "^6.2.1",
"lodash": "^4.17.21",
"lru-cache": "^11.1.0",
"p-queue": "^8.1.0",
"rbush": "^4.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-helmet": "^6.1.0",
"react-icons": "^5.4.0",
"react-intersection-observer": "^9.13.1",
"react-masonry-css": "^1.0.16",
"react-router-dom": "^6.30.0",
"react-slick": "^0.30.3",
"react-spring": "^9.7.5",
"semver": "^7.3.8",
"sharp": "^0.33.5",
"slick-carousel": "^1.8.1",
"uuid": "^11.1.0",
"yet-another-react-lightbox": "^3.21.4"
},
"devDependencies": {
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@testing-library/react": "^16.2.0",
"@types/express": "^4.17.21",
"@types/formidable": "^3.4.5",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.16",
"@types/node": "^18.16.3",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.3.0",
"@types/react-helmet": "^6.1.11",
"@types/three": "^0.173.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"depcheck": "^1.4.7",
"eslint": "^8.57.0",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-prettier": "^5.2.6",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-sonarjs": "^3.0.2",
"husky": "^8.0.3",
"lint-staged": "^15.5.1",
"madge": "^6.1.0",
"postcss": "^8.4.41",
"postcss-scss": "^4.0.9",
"prettier": "^3.5.3",
"rimraf": "^5.0.5",
"sass": "^1.78.0",
"tailwindcss": "^3.4.10",
"tsx": "^4.7.1",
"typescript": "^5.0.4",
"vite": "^5.4.12",
"vite-plugin-checker": "^0.8.0",
"vite-tsconfig-paths": "^4.2.1",
"worker-loader": "^3.0.8"
},
"engines": {
"node": ">=18.0.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml,css,scss}": [
"prettier --write"
]
}
}