-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 2.02 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
{
"name": "photo-gallery",
"private": true,
"version": "1.6.0",
"type": "module",
"description": "Photo Gallery is a self-hosted performant application to organize your photos. Built for speed with React and Go.",
"scripts": {
"start": "vite",
"dev": "vite",
"build": "tsc && vite build",
"build-server": "cd server && CGO_ENABLED=1 go build -v -installsuffix cgo -o photo-gallery",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"server": "cd server && go build && ./photo-gallery",
"server-dev": "nodemon --ext go --watch './server/' --signal SIGTERM --exec 'cd server && go build && ./photo-gallery'"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@fontsource/pt-sans": "^5.0.8",
"@mui/icons-material": "^5.14.14",
"@mui/material": "^5.14.14",
"@reduxjs/toolkit": "^1.9.7",
"@tabler/icons-react": "^2.39.0",
"leaflet": "^1.9.4",
"notistack": "v3.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-leaflet": "^4.2.1",
"react-photo-album": "^2.3.0",
"react-redux": "^8.1.3",
"react-router-dom": "^6.17.0",
"react-virtualized-auto-sizer": "^1.0.20",
"react-window": "^1.8.9",
"yet-another-react-lightbox": "^3.14.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.6",
"@types/leaflet": "^1.9.7",
"@types/node": "^20.8.8",
"@types/react": "^18.2.31",
"@types/react-dom": "^18.2.14",
"@types/react-window": "^1.8.7",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"@vitejs/plugin-react": "^4.1.0",
"eslint": "^8.52.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"nodemon": "^3.0.1",
"sass": "^1.69.4",
"typescript": "5.2.2",
"vite": "^4.5.0",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-pwa": "^0.16.5"
}
}