-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.67 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
39
40
41
42
43
44
45
46
47
48
49
{
"name": "@mysten/core",
"main": "src/index.ts",
"private": true,
"sideEffects": false,
"author": "Mysten Labs <build@mystenlabs.com>",
"repository": {
"type": "git",
"url": "github.com:MystenLabs/sui.git"
},
"license": "Apache-2.0",
"scripts": {
"prettier:check": "prettier -c --ignore-unknown .",
"prettier:fix": "prettier -w --ignore-unknown .",
"prettier:fix:watch": "onchange '**' -i -f add -f change -j 5 -- prettier -w --ignore-unknown {{file}}",
"eslint:check": "eslint --max-warnings=0 .eslintrc.js .",
"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",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@growthbook/growthbook-react": "^0.15.0",
"@mysten/sui.js": "workspace:*",
"@sentry/react": "^7.47.0",
"@sentry/tracing": "^7.60.0",
"@tanstack/react-query": "^4.29.3",
"bignumber.js": "^9.1.1",
"decimal.js": "^10.4.3",
"posthog-js": "^1.53.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@headlessui/tailwindcss": "^0.1.3",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.3",
"@types/react": "^18.0.35",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"postcss": "^8.4.19",
"prettier": "^2.8.7",
"tailwindcss": "^3.3.1",
"typescript": "^5.0.4",
"vite": "^4.2.1",
"vitest": "^0.30.1"
}
}