-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.92 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
{
"name": "sql-quest",
"version": "2.1.0",
"private": true,
"type": "module",
"scripts": {
"build:css": "npx tailwindcss -i src/input.css -o public/styles.css --minify",
"build:jsx": "vite build",
"build:jsx:babel": "npx babel src/app.jsx --out-file public/app.js --presets=@babel/preset-react --source-type module --source-maps --minified && printf '\\nwindow.SQLQuest = SQLQuest;\\n' >> public/app.js",
"build:data": "node scripts/bundle-data.js",
"build": "npm run build:css && npm run build:jsx && npm run build:data && node scripts/build-static-pages.js && node scripts/build-weekly.js && node scripts/cachebust.js",
"build:check": "npm run lint && npm test -- --run && npm run build && npm run build:validate",
"build:validate": "node scripts/validate-build.js",
"dev": "npx serve public",
"dev:og": "node scripts/dev-og-server.mjs",
"dev:watch": "npx nodemon --watch src --ext jsx,js,css,html --exec 'npm run build'",
"dev:vite": "vite",
"test": "vitest",
"test:run": "vitest run",
"smoke": "node scripts/smoke-test.js",
"lint": "eslint src/utils/ tests/",
"indexnow": "node scripts/indexnow.mjs",
"metrics:report": "node scripts/sqlquest-metrics-report.mjs",
"metrics:kpis": "node scripts/sqlquest-metrics-report.mjs --out public/kpis.json"
},
"devDependencies": {
"@babel/cli": "^7.24.0",
"@babel/core": "^7.24.0",
"@babel/preset-react": "^7.24.0",
"@eslint/js": "^10.0.1",
"@vitejs/plugin-react": "^6.0.1",
"better-sqlite3": "^12.9.0",
"eslint": "^10.0.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwindcss": "^3.4.0",
"terser": "^5.30.0",
"vite": "^8.0.8",
"vitest": "^4.1.0",
"ws": "^8.20.0"
},
"dependencies": {
"@vercel/analytics": "^2.0.1",
"@vercel/og": "^0.11.1",
"@vercel/speed-insights": "^2.0.0"
},
"overrides": {
"sharp": "^0.35.3",
"brace-expansion": "^2.0.2"
}
}