-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.12 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.12 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
{
"name": "react-aes",
"private": true,
"version": "1.1.2",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"build:version": "vite build",
"release:version": "standard-version",
"release": "pnpm release:version && git push --follow-tags origin main && pnpm build:version && git add . && git diff --quiet || git commit -m \"chore: build output\" && git push origin main",
"lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview"
},
"dependencies": {
"bootstrap": "^5.3.7",
"bootstrap-icons": "^1.13.1",
"crypto-js": "^4.2.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hot-toast": "^2.5.2",
"react-icons": "^5.2.1"
},
"devDependencies": {
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.0",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"standard-version": "^9.5.0",
"vite": "^5.2.12",
"vite-plugin-pwa": "^0.20.0"
}
}