-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.64 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 2.64 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
{
"name": "cvl-lab-homepage",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"content:bootstrap": "node scripts/content/bootstrap-from-legacy.mjs",
"content:sync": "node scripts/content/sync.mjs",
"photos:sync": "node scripts/content/photos.mjs",
"people:sync": "node scripts/content/people.mjs",
"people:validate": "node scripts/content/people.mjs --validate-only",
"deadlines:sync": "node scripts/content/deadlines.mjs",
"deadlines:refresh": "node scripts/content/deadlines.mjs --refresh-sources",
"deadlines:validate": "node scripts/content/deadlines.mjs --validate-only",
"research:validate": "node scripts/content/research.mjs",
"validate:content": "node scripts/content/validate.mjs",
"audit:dependencies": "better-npm-audit audit --level low --exclude GHSA-qwww-vcr4-c8h2",
"operator:verify": "npm run audit:dependencies && npm run content:sync && npm run build",
"prebuild": "npm run validate:content",
"build": "vite build",
"build:client": "vite build",
"build:ssr": "vite build --ssr src/ssg/entry-server.jsx --outDir dist/server",
"prerender": "NODE_ENV=production node scripts/prerender.mjs",
"build:static": "npm run build:client && npm run build:ssr && npm run prerender",
"lint": "eslint .",
"preview": "vite preview",
"predeploy": "VITE_BASE_PATH=/ npm run build",
"deploy": "gh-pages -d dist",
"predeploy:static": "VITE_BASE_PATH=/ npm run build:static",
"deploy:static": "gh-pages -d dist"
},
"overrides": {
"js-yaml": "^4.3.1",
"nanoid": "^3.3.18"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-brands-svg-icons": "^6.6.0",
"@fortawesome/free-regular-svg-icons": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/react-fontawesome": "^0.2.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-grid-gallery": "^1.0.1",
"react-router-dom": "^7.18.2",
"yaml": "^2.8.3"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^1.3.2",
"better-npm-audit": "^3.11.0",
"eslint": "^9.9.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.9",
"gh-pages": "^6.3.0",
"globals": "^15.9.0",
"vite": "^6.4.3"
}
}