-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.31 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
{
"name": "toone-oss",
"version": "1.0.0",
"private": true,
"engines": {
"node": ">=24"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"content:validate": "node scripts/content/validate-publications.mjs",
"content:check-routes": "node scripts/content/check-built-routes.mjs",
"content:check": "npm run content:validate",
"prebuild": "npm run content:validate",
"typecheck": "tsc --noEmit",
"test": "npm run content:check && npm run test:explore && npm run typecheck",
"explore:mock": "node scripts/explore-mock-api.mjs",
"test:explore": "node --import tsx --test tests/explore/*.test.ts tests/explore/*.test.tsx",
"test:explore:http": "node --test tests/explore/http.test.mjs && node --test tests/explore/outage.test.mjs"
},
"dependencies": {
"gray-matter": "^4.0.3",
"next": "^16.3.5",
"next-intl": "^4.13.6",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"server-only": "^0.0.1"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.0.0",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"schema-dts": "2.0.0",
"tailwindcss": "^4.0.0",
"tsx": "^4.23.15",
"typescript": "^5.7.0"
}
}