-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.54 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
{
"name": "my-image-gallery",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "tsx scripts/dev.ts",
"dev:core": "next dev --turbo -H 0.0.0.0",
"build": "next build --webpack",
"start": "next start",
"lint": "eslint",
"db:init": "tsx scripts/init-db.ts",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@alicloud/openapi-client": "^0.4.15",
"@alicloud/sts20150401": "^1.1.6",
"ali-oss": "^6.23.0",
"blurhash": "^2.0.5",
"browser-image-compression": "^2.0.2",
"file-saver": "^2.0.5",
"framer-motion": "^12.23.25",
"glob": "^13.0.0",
"jszip": "^3.10.1",
"lucide-react": "^0.556.0",
"next": "16.0.7",
"pg": "^8.16.3",
"proxy-agent": "^5.0.0",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-intersection-observer": "^10.0.0",
"react-zoom-pan-pinch": "^3.7.0",
"sharp": "^0.34.5",
"sonner": "^2.0.7",
"swiper": "^12.0.3",
"use-debounce": "^10.0.6"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/ali-oss": "^6.16.13",
"@types/file-saver": "^2.0.7",
"@types/node": "^20",
"@types/pg": "^8.16.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitest/coverage-v8": "^3.2.4",
"chalk": "^5.6.2",
"dotenv": "^17.2.3",
"eslint": "^9",
"eslint-config-next": "16.0.7",
"open": "^11.0.0",
"tailwindcss": "^4",
"tree-kill": "^1.2.2",
"tsx": "^4.21.0",
"typescript": "^5",
"vitest": "^3.2.4"
}
}