-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.91 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.91 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": "statewave-web",
"private": true,
"version": "1.0.0",
"license": "Apache-2.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "npm run build:client && npm run build:ssr-bundle && npm run build:postbuild && npm run build:server",
"build:client": "tsc -b && vite build",
"build:ssr-bundle": "vite build --ssr src/entry.server.tsx --outDir dist-ssr --emptyOutDir",
"build:postbuild": "node scripts/post-build.mjs",
"build:server": "tsc -p tsconfig.server.json",
"preview": "vite preview",
"start": "node dist-server/server/index.js",
"typecheck": "tsc -b --noEmit && tsc -p tsconfig.server.json --noEmit",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest",
"refresh:credibility": "node scripts/refresh-credibility-stats.mjs"
},
"dependencies": {
"@mdx-js/react": "^3.1.1",
"@mdx-js/rollup": "^3.1.1",
"feed": "^5.2.1",
"framer-motion": "^12.39.0",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.15.1",
"rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.1",
"remark-mdx-frontmatter": "^5.2.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tailwindcss/vite": "^4.3.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/mdx": "^2.0.13",
"@types/node": "^25.9.1",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.2",
"eslint": "^10.4.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.6.0",
"happy-dom": "^20.9.0",
"tailwindcss": "^4.3.0",
"typescript": "~6.0.2",
"typescript-eslint": "^8.59.4",
"vite": "^8.0.13",
"vitest": "^4.1.7"
}
}