-
-
Notifications
You must be signed in to change notification settings - Fork 103
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.56 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.56 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
{
"name": "forgesteel",
"private": true,
"version": "14.35.0",
"type": "module",
"repository": "https://github.com/andyaiken/forgesteel.git",
"homepage": "https://andyaiken.github.io/forgesteel/",
"scripts": {
"start": "npm ci && vite --host",
"update": "npx npm-check-updates --peer --interactive --format group",
"lint": "eslint \"src/**/*.{ts,tsx}\" --concurrency auto",
"fix": "eslint \"src/**/*.{ts,tsx}\" --concurrency auto --fix",
"test": "vitest",
"check": "npm run lint && tsc -p tsconfig.json && vitest run && npm audit",
"build": "vite build",
"predeploy": "npm run check && npm run build",
"deploy": "gh-pages -d dist"
},
"dependencies": {
"@ant-design/icons": "^6.1.1",
"@dnd-kit/core": "^6.3.1",
"@mdxeditor/editor": "^3.55.0",
"@types/showdown": "^2.0.6",
"antd": "^6.3.6",
"axios": "^1.15.2",
"gh-pages": "^6.3.0",
"html2canvas": "^1.4.1",
"jspdf": "^4.2.1",
"localforage": "^1.10.0",
"modern-screenshot": "^4.7.0",
"pdf-lib": "^1.17.1",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-router": "^7.14.2",
"sass": "^1.99.0",
"showdown": "^2.1.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@stylistic/eslint-plugin": "^5.10.0",
"@types/gtag.js": "^0.0.20",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.5",
"axios-mock-adapter": "^2.1.0",
"esbuild": "^0.28.0",
"eslint": "^10.2.1",
"globals": "^17.5.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.0",
"vite": "^8.0.9",
"vitest": "^4.1.5"
}
}