-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.52 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
46
47
48
49
50
51
52
53
54
{
"name": "cesium",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"prepare": "husky install",
"dev": "vite build --watch",
"build": "bunx --bun vite build",
"ui": "bunx --bun vite dev",
"export": "rm -f cesium.zip && rm -rf dist && bunx --bun vite build && zip -r cesium.zip dist",
"push": "git add . && git commit && git push",
"release": "bun export && bun push",
"style": "prettier --check \"src/**/*.{ts,tsx}\"",
"style:fix": "prettier --write \"src/**/*.{ts,tsx}\""
},
"author": "Nano Gift Developers",
"license": "MIT",
"dependencies": {
"@emotion/react": "^11.11.4",
"multi-nano-web": "^1.5.1",
"nanocurrency": "^2.5.0",
"react": "^18.2.0",
"react-confetti-boom": "^1.0.0",
"react-dom": "^18.2.0",
"react-icons": "^5.0.1",
"react-select": "^5.8.0",
"react-spinners": "^0.13.8",
"react-toastify": "^10.0.5",
"vite-plugin-node-polyfills": "^0.22.0"
},
"prettier": {
"tabWidth": 2
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.7",
"@types/bun": "^1.0.12",
"@types/chrome": "0.0.268",
"@types/node": "^20.10.4",
"@types/react": "^18.0.29",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react-swc": "^3.5.0",
"autoprefixer": "^10.4.16",
"cssnano": "^7.0.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.0",
"postcss": "^8.4.32",
"prettier": "^3.2.5",
"shell-quote": "^1.8.1",
"tailwindcss": "^3.3.6",
"typescript": "^5.0.4",
"vite": "^5.0.7"
}
}