-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.94 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.94 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
{
"name": "datafresq",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"postinstall": "cp -r node_modules/@gouvfr/dsfr/dist/artwork node_modules/@gouvfr/dsfr/dist/favicon public/",
"dev": "bun run generate:guide && bun --hot server.ts",
"generate:guide": "bun docs/generate-guide.ts",
"build": "bun run generate:guide && bun build --target=bun --production --outdir=dist ./server.ts",
"start": "NODE_ENV=production bun server.ts",
"typecheck": "tsc --noEmit",
"preview:emails:server": "bun --hot emails/preview-server.ts",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"format": "biome format .",
"format:fix": "biome format --write .",
"check": "biome check .",
"check:fix": "biome check --write .",
"verify": "bun run typecheck && bun run check",
"test": "bun test api/__tests__",
"test:watch": "bun test --watch api/__tests__/"
},
"dependencies": {
"@elastic/elasticsearch": "8",
"@elysiajs/cors": "^1.4.1",
"@elysiajs/eden": "^1.4.6",
"@elysiajs/jwt": "^1.4.0",
"@elysiajs/openapi": "^1.4.13",
"@elysiajs/server-timing": "^1.4.0",
"@gouvfr/dsfr": "^1.14.3",
"@highcharts/react": "^4.1.0",
"@tanstack/react-form": "^1.27.7",
"@tanstack/react-query": "^5.90.16",
"@tanstack/react-table": "^8.21.3",
"@vis.gl/react-maplibre": "^8.1.0",
"classnames": "^2.5.1",
"elysia": "^1.4.19",
"github-slugger": "^2.0.0",
"highcharts": "^12.4.0",
"maplibre-gl": "^5.15.0",
"mongodb": "^7.0.0",
"nuqs": "^2.8.6",
"proj4": "^2.20.2",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-markdown": "^10.1.0",
"react-router": "^7.11.0",
"rehype-slug": "^6.0.0",
"remark-gfm": "^4.0.1",
"xlsx": "^0.18.5",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.4.2",
"@types/bun": "1.3.5",
"@types/react": "^19.2.7",
"@types/react-dom": "^19"
}
}