-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
84 lines (84 loc) · 3.36 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "constantinople",
"version": "0.0.1",
"description": "Simple starter template",
"author": "[email protected]",
"license": "GPL3",
"scripts": {
"dev": "pnpm run start-template",
"start-template": "pnpm run localnode && sleep 5 && ts-node scripts/generateAccount.ts && obelisk faucet --network localnet && obelisk publish --network localnet && ts-node scripts/storeConfig.ts localnet && next",
"next": "next",
"build": "next build",
"start": "next start",
"type-check": "tsc",
"test": "jest",
"format": "prettier --write 'src/**/*ts'",
"lint": "next lint",
"faucet-localnet": "obelisk faucet --network localnet",
"faucet-devnet": "obelisk faucet --network devnet",
"faucet-testnet": "obelisk faucet --network testnet",
"world-publsih-localnet": "obelisk publish --network localnet && ts-node scripts/storeConfig.ts localnet",
"world-publsih-devnet": "obelisk publish --network devnet && ts-node scripts/storeConfig.ts devnet",
"world-publsih-testnet": "obelisk publish --network testnet && ts-node scripts/storeConfig.ts testnet",
"world-publsih-mainnet": "obelisk publish --network mainnet && ts-node scripts/storeConfig.ts mainnet",
"world-upgrade-localnet": "obelisk upgrade --network localnet && ts-node scripts/storeConfig.ts localnet",
"world-upgrade-devnet": "obelisk upgrade --network devnet && ts-node scripts/storeConfig.ts devnet",
"world-upgrade-testnet": "obelisk upgrade --network testnet && ts-node scripts/storeConfig.ts testnet",
"world-upgrade-mainnet": "obelisk upgrade --network mainnet && ts-node scripts/storeConfig.ts mainnet",
"localnode": "nohup obelisk localnode > localnode.nohup.out &",
"worldgen": "obelisk schemagen obelisk.config.ts",
"storeConfig": "ts-node scripts/storeConfig.ts",
"generateAccount": "ts-node scripts/generateAccount.ts"
},
"dependencies": {
"@0xobelisk/sui-cli": "^0.5.5",
"@0xobelisk/sui-client": "^0.5.8",
"@0xobelisk/sui-common": "^0.5.5",
"@mysten/sui.js": "0.45.1",
"@reduxjs/toolkit": "^1.9.7",
"@suiet/wallet-kit": "0.2.22",
"axios": "^0.26.0",
"clsx": "^1.2.1",
"daisyui": "^2.0.9",
"framer-motion": "^10.12.16",
"jotai": "^1.7.2",
"next": "^12.1.6",
"next-i18next": "^11.0.0",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-redux": "^8.1.3",
"react-select": "^5.4.0",
"redux": "^4.2.1",
"redux-thunk": "^2.4.2",
"swiper": "^9.2.4"
},
"devDependencies": {
"@headlessui/react": "^1.7.15",
"@heroicons/react": "^2.0.18",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/line-clamp": "^0.4.4",
"@tailwindcss/typography": "^0.5.9",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.2",
"@types/node": "18.16.16",
"@types/react": "18.2.8",
"@types/react-dom": "18.2.4",
"@types/react-redux": "^7.1.27",
"autoprefixer": "^10.4.14",
"eslint": "^8.41.0",
"eslint-config-next": "13.4.4",
"jest": "^29.5.0",
"jest-css-modules-transform": "^4.4.2",
"postcss": "^8.4.24",
"prettier": "^2.8.8",
"prop-types": "^15.8.1",
"tailwind-scrollbar": "^2.1.0",
"tailwindcss": "^3.2.4",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.3.3"
}
}