-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
45 lines (45 loc) · 1.21 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
{
"name": "forgesteel",
"private": true,
"version": "7.22.0",
"type": "module",
"repository": "https://github.com/andyaiken/forgesteel.git",
"homepage": "https://andyaiken.github.io/forgesteel/",
"scripts": {
"update": "npx npm-check-updates --interactive --format group",
"start": "vite --host",
"lint": "npm run type:check && eslint .",
"preview": "vite preview",
"build": "vite build",
"predeploy": "npm run type:check && vite build",
"deploy": "gh-pages -d dist",
"type:check": "tsc -p tsconfig.node.json && tsc -p tsconfig.app.json"
},
"dependencies": {
"@ant-design/icons": "^5.6.1",
"@types/showdown": "^2.0.6",
"antd": "^5.24.3",
"gh-pages": "^6.3.0",
"html2canvas": "^1.4.1",
"jspdf": "^3.0.0",
"localforage": "^1.10.0",
"pdf-lib": "^1.17.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router": "^7.3.0",
"sass": "^1.85.1",
"showdown": "^2.1.0"
},
"devDependencies": {
"@eslint/js": "^9.22.0",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.22.0",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^16.0.0",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.1",
"vite": "^6.2.2"
}
}