-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
90 lines (90 loc) · 2.94 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
85
86
87
88
89
90
{
"name": "@cartridge/profile",
"version": "0.7.5",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"format": "prettier --write ./src index.html",
"format:check": "prettier --check ./src index.html",
"preview": "vite preview",
"storybook": "storybook dev -p 6003 --no-open",
"storybook:build": "storybook build",
"storybook:serve": "pnpm storybook:build --quiet && pnpm http-server -c-1 storybook-static --port 6003 --silent",
"test-storybook": "test-storybook --testTimeout=60000",
"test:storybook:update": "start-server-and-test 'SNAPSHOT=1 pnpm storybook:serve' 6003 'pnpm test-storybook --url http://127.0.0.1:6003 -u'",
"test:storybook": "start-server-and-test 'pnpm storybook:serve' 6003 'pnpm test-storybook --url http://127.0.0.1:6003'"
},
"imports": {
"#hooks/account": {
"storybook": "./src/hooks/account.mock.ts",
"default": "./src/hooks/account.ts"
},
"#hooks/collection": {
"storybook": "./src/hooks/collection.mock.ts",
"default": "./src/hooks/collection.ts"
},
"#hooks/token": {
"storybook": "./src/hooks/token.mock.ts",
"default": "./src/hooks/token.ts"
},
"#*": [
"./src/*",
"./src/*.ts",
"./src/*.tsx",
"./src/*/index.ts",
"./src/*/index.tsx"
]
},
"dependencies": {
"@bal7hazar/arcade-sdk": "^0.0.73",
"@cartridge/controller": "workspace:*",
"@cartridge/penpal": "catalog:",
"@cartridge/ui-next": "workspace:*",
"@cartridge/utils": "workspace:*",
"compare-versions": "^6.1.1",
"lodash": "catalog:",
"react": "catalog:",
"react-dom": "catalog:",
"react-query": "catalog:",
"react-router-dom": "catalog:",
"sonner": "catalog:",
"starknet": "catalog:",
"viem": "catalog:",
"vite-plugin-top-level-await": "catalog:",
"vite-plugin-wasm": "catalog:"
},
"devDependencies": {
"@cartridge/eslint": "workspace:*",
"@cartridge/tsconfig": "workspace:*",
"@storybook/addon-essentials": "catalog:",
"@storybook/addon-themes": "catalog:",
"@storybook/blocks": "catalog:",
"@storybook/react": "catalog:",
"@storybook/react-vite": "catalog:",
"@storybook/test": "catalog:",
"@storybook/test-runner": "catalog:",
"@types/lodash": "catalog:",
"@types/jest-image-snapshot": "catalog:",
"@types/node": "catalog:",
"@types/react": "catalog:",
"@types/react-dom": "catalog:",
"@vitejs/plugin-react-swc": "catalog:",
"autoprefixer": "catalog:",
"eslint": "catalog:",
"globals": "catalog:",
"http-server": "catalog:",
"jest-image-snapshot": "catalog:",
"postcss": "catalog:",
"postcss-import": "catalog:",
"prettier": "catalog:",
"start-server-and-test": "catalog:",
"storybook": "catalog:",
"tailwindcss": "catalog:",
"typescript": "catalog:",
"typescript-eslint": "catalog:",
"vite": "catalog:"
}
}