-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
108 lines (108 loc) · 3.98 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "blockchain-components",
"description": "A loosely related set of components for blockchain functionality on Shopify storefronts",
"scripts": {
"build": "turbo run build --filter='./apps/playground' --filter='!./examples/*'",
"build:packages": "turbo run build --filter='!./apps/*' --filter='!./examples/*'",
"build-storybook": "storybook build",
"changeset": "changeset",
"dev": "turbo run dev --filter='!./examples/*'",
"dev:packages": "turbo run dev --filter='!./apps/*' --filter='!./examples/*'",
"example": "node scripts/run-example.mjs",
"example:cra": "yarn --cwd ./examples/cra start",
"example:custom-theme": "yarn --cwd ./examples/vite-custom-theme dev",
"example:nextjs": "yarn --cwd ./examples/nextjs dev",
"example:remix": "yarn --cwd ./examples/remix dev",
"example:vite": "yarn --cwd ./examples/vite dev",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint": "turbo run lint --filter='!./apps/*' --filter='!./examples/*'",
"postinstall": "patch-package",
"preversion": "echo \"Error: use @changsets/cli to version packages\" && exit 1",
"preversion-packages": "node scripts/preversion.js",
"release": "yarn build:packages && changeset publish",
"storybook": "storybook dev -p 6006",
"test": "turbo run test --filter='!./apps/*' --filter='!./examples/*'",
"test:watch": "turbo run test:watch --filter='!./apps/*' --filter='!./examples/*'",
"typecheck": "turbo run typecheck --filter='!./apps/*' --filter='!./examples/*'",
"version-packages": "yarn preversion-packages && changeset version"
},
"repository": {
"type": "git",
"url": "[email protected]:Shopify/blockchain-components.git"
},
"author": "Shopify Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/Shopify/blockchain-components/issues"
},
"homepage": "https://github.com/Shopify/blockchain-components#readme",
"private": true,
"workspaces": [
"apps/*",
"examples/*",
"packages/*"
],
"prettier": "@shopify/prettier-config",
"stylelint": {
"extends": [
"@shopify/stylelint-plugin",
"@shopify/stylelint-plugin/prettier"
]
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/node": "^7.20.5",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.0",
"@changesets/get-release-plan": "^3.0.16",
"@shopify/babel-preset": "^24.1.5",
"@shopify/eslint-plugin": "^42.0.2",
"@shopify/prettier-config": "^1.1.2",
"@shopify/typescript-configs": "^5.1.0",
"@storybook/addon-actions": "^7.0.24",
"@storybook/addon-essentials": "^7.0.24",
"@storybook/addon-interactions": "^7.0.24",
"@storybook/addon-links": "^7.0.24",
"@storybook/builder-vite": "^7.0.24",
"@storybook/node-logger": "^7.0.24",
"@storybook/react": "^7.0.24",
"@storybook/react-vite": "^7.0.24",
"@storybook/testing-library": "^0.2.0",
"@testing-library/dom": "^9.3.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.2.1",
"@types/node": "^16.7.13",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@vitejs/plugin-react": "^3.1.0",
"autoprefixer": "^10.4.14",
"babel-plugin-react-require": "^3.1.3",
"chalk": "^5.2.0",
"concurrently": "^7.6.0",
"eslint": "^8.27.0",
"execa": "^7.1.1",
"inquirer": "^9.1.5",
"node-stdlib-browser": "^1.2.0",
"ora": "^6.2.0",
"patch-package": "^6.5.1",
"postcss": "^8.4.21",
"postcss-import": "^15.1.0",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^7.0.24",
"tailwindcss": "^3.3.2",
"turbo": "latest",
"typescript": "^4.9.3",
"viem": "^1.0.0",
"vite": "^4.3.9",
"vite-plugin-node-polyfills": "^0.7.0",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.31.1",
"vitest-fetch-mock": "^0.2.2",
"wagmi": "^1.0.1"
},
"peerDependencies": {}
}