-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.15 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.15 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
{
"name": "pncel-website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "npm run validate-yaml && next build",
"build:skip-validation": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write .",
"validate-yaml": "tsx scripts/validate-yaml.ts",
"db": "tsc --project scripts && node scripts/db.js",
"blog": "node scripts/newblog.js",
"prepare": "husky"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.1",
"@fortawesome/free-brands-svg-icons": "^6.5.1",
"@fortawesome/free-regular-svg-icons": "^6.5.1",
"@fortawesome/free-solid-svg-icons": "^6.5.1",
"@fortawesome/react-fontawesome": "^3.1.1",
"@mdx-js/loader": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@next/mdx": "^15.5.9",
"@types/mdx": "^2.0.13",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"gray-matter": "^4.0.3",
"marked": "^17.0.1",
"next": "^15.5.9",
"next-mdx-remote": "^5.0.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-fontawesome": "^1.7.1",
"rehype-slug": "^6.0.0",
"rxdb": "^16.9.0",
"rxjs": "^7.8.2",
"sanitize-html": "^2.15.0",
"sharp": "^0.33.5",
"typewriter-effect": "^2.22.0",
"yaml": "^2.7.1"
},
"devDependencies": {
"@citation-js/core": "^0.7.18",
"@citation-js/plugin-bibtex": "^0.7.18",
"@citation-js/plugin-doi": "^0.7.18",
"@tailwindcss/typography": "^0.5.10",
"@types/node": "^20",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/sanitize-html": "^2.13.0",
"autoprefixer": "^10.0.1",
"command-line-args": "^6.0.1",
"command-line-usage": "^7.0.3",
"daisyui": "^4.7.3",
"eslint": "^9.39.2",
"eslint-config-next": "^15.5.9",
"fuse.js": "^7.1.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"postcss": "^8",
"prettier": "3.2.5",
"tailwindcss": "^3.3.0",
"tsx": "^4.21.0",
"typescript": "^5.4.5",
"zod": "^4.2.1"
},
"lint-staged": {
"public/database/*.yaml": [
"npm run validate-yaml"
],
"*.{js,jsx,ts,tsx,json,css,md}": [
"prettier --write"
]
}
}