-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.86 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.86 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
{
"name": "studorama",
"private": false,
"version": "2.6.3",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint .",
"preview": "vite preview",
"version:bump": "node scripts/version-manager.js bump",
"version:major": "node scripts/version-manager.js major",
"version:minor": "node scripts/version-manager.js minor",
"version:patch": "node scripts/version-manager.js patch",
"version:info": "node scripts/version-manager.js info",
"deploy": "node scripts/deploy.js deploy",
"deploy:major": "node scripts/deploy.js deploy major",
"deploy:minor": "node scripts/deploy.js deploy minor",
"deploy:patch": "node scripts/deploy.js deploy patch",
"predeploy": "npm run lint",
"postdeploy": "echo 'Deployment completed successfully!'"
},
"dependencies": {
"highlight.js": "^11.11.1",
"json5": "^2.2.3",
"lodash": "^4.17.21",
"lucide-react": "^0.344.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^9.1.0",
"react-router-dom": "^6.30.1",
"react-syntax-highlighter": "^15.6.1",
"rehype-highlight": "^7.0.2",
"rehype-katex": "^7.0.1",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0"
},
"devDependencies": {
"@eslint/js": "^9.31.0",
"@types/dom-helpers": "^3.4.1",
"@types/lodash": "^4.17.20",
"@types/react": "^18.3.23",
"@types/react-dom": "^18.3.7",
"@types/react-syntax-highlighter": "^15.5.13",
"@vitejs/plugin-react": "^4.7.0",
"autoprefixer": "^10.4.21",
"eslint": "^9.31.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^15.15.0",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.17",
"terser": "^5.43.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.38.0",
"vite": "^5.4.19"
}
}