-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.84 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.84 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "veritas",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "npm run generate && run-p dev:*",
"dev:next": "next dev -p 3300",
"dev:frourio": "frourio-next --watch",
"dev:hcm": "hcm 'src/**/*.module.css' -w",
"dev:path": "pathpida -s -w",
"dev:msw": "frourio-next-msw --watch",
"hcm": "hcm 'src/**/*.module.css'",
"generate": "frourio-next && frourio-next-msw && pathpida -s",
"lint": "run-p lint:*",
"lint:js": "eslint .",
"lint:prettier": "prettier --check \"./**/*.{ts,tsx,js}\" --ignore-path .gitignore",
"lint:style": "stylelint \"src/**/*.css\" --ignore-path .gitignore",
"fix:lint": "npm run fix:prettier && npm run lint:js -- --fix && npm run lint:style -- --fix && npm run fix:prettier",
"fix:prettier": "npm run lint:prettier -- --write",
"build": "npm run generate && next build",
"start": "next start",
"test": "vitest run --coverage",
"typecheck": "npm run hcm && tsc --noEmit"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.817.0",
"@aws-sdk/lib-storage": "^3.817.0",
"@aws-sdk/s3-request-presigner": "^3.817.0",
"@mdx-js/loader": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@next/mdx": "^15.3.4",
"dayjs": "^1.11.13",
"dotenv": "^16.5.0",
"jszip": "^3.10.1",
"next": "^15.1.8",
"opentimestamps": "^0.4.9",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-markdown": "^10.1.0",
"rehype-katex": "^7.0.1",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"simple-git": "^3.28.0",
"swr": "^2.3.3",
"ulid": "^3.0.0",
"zod": "^3.25.28"
},
"devDependencies": {
"@frourio/next": "^0.19.2",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/eslint-config-prettier": "^6.11.3",
"@types/node": "^22.15.21",
"@types/pg": "^8.15.2",
"@types/react": "^19.1.5",
"@types/react-dom": "^19.1.5",
"@vitejs/plugin-react-swc": "^3.10.0",
"@vitest/coverage-v8": "^3.1.4",
"esbuild": "^0.25.4",
"esbuild-register": "^3.6.0",
"eslint": "^9.27.0",
"eslint-config-flat-gitignore": "^2.1.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^16.1.0",
"happy-css-modules": "^4.0.0",
"jiti": "^2.4.2",
"jsdom": "^26.1.0",
"msw": "^2.8.4",
"next-router-mock": "^1.0.2",
"npm-run-all": "^4.1.5",
"pathpida": "^0.25.0",
"prettier": "^3.5.3",
"prettier-plugin-organize-imports": "^4.1.0",
"stylelint": "^16.19.1",
"stylelint-config-recess-order": "^6.0.0",
"stylelint-config-standard": "^37.0.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.1",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^3.1.4"
},
"engines": {
"node": ">=22.0.0"
}
}