-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.21 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.21 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
{
"name": "picture-cutter",
"version": "2.1.0",
"private": true,
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vite",
"prettier": "prettier --write .",
"build": "vite build",
"preview": "vite preview",
"patch": "standard-version --release-as patch && git push --follow-tags origin master",
"minor": "standard-version --release-as minor && git push --follow-tags origin master",
"major": "standard-version --release-as major && git push --follow-tags origin master"
},
"dependencies": {
"antd": "^6.3.0",
"file-saver": "^2.0.5",
"jspdf": "^4.1.0",
"jszip": "^3.10.1",
"react": "^19.2.4",
"react-dom": "^19.2.4"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
"@tailwindcss/vite": "^4.1.18",
"@types/file-saver": "^2.0.7",
"@types/node": "^25.2.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.4",
"prettier": "^3.8.1",
"standard-version": "^9.5.0",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3",
"vite": "^7.3.1"
}
}