forked from MystenLabs/sui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.15 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
{
"name": "kiosk-demo",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"prettier:check": "prettier -c --ignore-unknown .",
"prettier:fix": "prettier -w --ignore-unknown .",
"eslint:check": "eslint --max-warnings=0 .",
"eslint:fix": "pnpm run eslint:check --fix",
"lint": "pnpm run eslint:check && pnpm run prettier:check",
"lint:fix": "pnpm run eslint:fix && pnpm run prettier:fix",
"precommit": "pnpm prettier:fix && pnpm lint"
},
"dependencies": {
"@headlessui/react": "^1.7.14",
"@headlessui/tailwindcss": "^0.1.3",
"@mysten/kiosk": "workspace:*",
"@mysten/sui.js": "workspace:*",
"@mysten/wallet-kit": "workspace:*",
"@tanstack/react-query": "^4.29.3",
"classnames": "^2.3.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.0",
"react-router-dom": "^6.12.1"
},
"devDependencies": {
"@types/react": "^18.0.35",
"@types/react-dom": "^18.2.5",
"@vitejs/plugin-react": "^4.0.0",
"autoprefixer": "^10.4.14",
"postcss": "^8.4.24",
"tailwindcss": "^3.3.1",
"typescript": "^5.0.4",
"vite": "^4.2.3"
}
}