-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.48 KB
/
package.json
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
{
"$schema": "https://json.schemastore.org/package.json",
"private": true,
"type": "module",
"scripts": {
"prepare": "husky install",
"dev": "next",
"build": "next build",
"start": "next start",
"test": "jest",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --check .",
"format:fix": "prettier --write ."
},
"dependencies": {
"@openfonts/quicksand_all": "^1.44.4",
"change-case": "^5.4.4",
"gray-matter": "^4.0.3",
"next": "latest",
"nextra": "^3.2.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rss": "^1.2.2"
},
"devDependencies": {
"@eslint/compat": "^1.2.3",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.15.0",
"@tsconfig/next": "^2.0.3",
"@types/eslint": "^9.6.1",
"@types/jest": "^29.5.14",
"@types/lint-staged": "^13.3.0",
"@types/node": "^22.9.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"acorn": "^8.14.0",
"acorn-loose": "^8.4.0",
"eslint": "^9.15.0",
"eslint-config-next": "^15.0.3",
"eslint-plugin-import": "^2.31.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"minimatch": "^10.0.1",
"prettier": "^3.3.3",
"react-katex": "^3.0.1",
"remark-behead": "^3.1.0",
"remark-lilypond": "^0.2.0",
"remark-sectionize": "^2.1.0",
"sass": "^1.81.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2",
"yaml": "^2.6.1"
}
}