-
-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.72 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.72 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
89
90
91
{
"name": "physicshub",
"homepage": "https://physicshub.github.io",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev & nodemon --watch src/routes.js --watch public/index.html --exec \"npm run generate:sitemap\"",
"build": "npm run generate:sitemap && next build",
"preview": "npm run build && npx serve@latest out",
"predeploy": "npm run build && npm run contributors",
"deploy": "gh-pages -d out",
"generate:sitemap": "node scripts/sitemap-generator.js",
"contributors": "node --loader ts-node/esm scripts/contributors/contributors.ts",
"lint": "eslint",
"lint:fix": "eslint --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"pre-commit": "node scripts/check-package-lock.js",
"prepare": "husky install"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@fortawesome/fontawesome-svg-core": "^7.1.0",
"@fortawesome/free-brands-svg-icons": "^7.1.0",
"@fortawesome/free-solid-svg-icons": "^7.1.0",
"@fortawesome/react-fontawesome": "^3.1.0",
"@octokit/rest": "^22.0.1",
"ace-builds": "^1.43.5",
"clsx": "^2.1.1",
"katex": "^0.16.25",
"koalaz": "^1.1.3",
"motion": "^12.23.24",
"next": "16.1.7",
"p5": "^2.1.2",
"planck": "^1.4.2",
"react": "^19.2.0",
"react-ace": "^14.0.1",
"react-dom": "^19.2.0",
"react-katex": "^3.1.0",
"react-router-hash-link": "^2.4.3",
"react-syntax-highlighter": "^16.1.0",
"xml-formatter": "^3.6.7"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@semantic-release/exec": "^7.1.0",
"@tailwindcss/postcss": "^4",
"@types/node": "^25.3.3",
"@types/p5": "^1.7.6",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/react-katex": "^3.0.4",
"@types/react-syntax-highlighter": "^15.5.13",
"@typescript-eslint/eslint-plugin": "^8.53.0",
"@typescript-eslint/parser": "^8.53.0",
"axios": "^1.13.2",
"dotenv": "^17.2.3",
"eslint": "^9.39.4",
"eslint-config-next": "16.1.6",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"fast-xml-parser": "^5.5.7",
"gh-pages": "^6.3.0",
"globals": "^17.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"nodemon": "^3.1.10",
"prettier": "^3.8.0",
"puppeteer": "^24.34.0",
"sitemap": "^9.0.1",
"tailwindcss": "^4",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"**/*.{json,css,md}": [
"prettier --write"
]
},
"engines": {
"node": "24.8.0"
},
"author": "MattQ",
"license": "MIT"
}