-
Notifications
You must be signed in to change notification settings - Fork 269
/
package.json
117 lines (117 loc) · 4 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
109
110
111
112
113
114
115
116
117
{
"name": "web3uikit_monorepo",
"version": "1.0.0",
"license": "MIT",
"repository": "https://github.com/web3ui/web3uikit",
"homepage": "https://web3ui.github.io/web3uikit/",
"workspaces": [
"apps/*",
"packages/*"
],
"private": "true",
"browser": {
"http": false,
"https": false,
"os": false,
"stream": false,
"crypto": false
},
"size-limit": [
{
"path": "packages/core/dist/index.js"
},
{
"path": "packages/icons/dist/index.es.js"
},
{
"path": "packages/web3/dist/index.js"
},
{
"path": "packages/web3uikit/dist/index.js"
}
],
"scripts": {
"build": "nx run-many --target=build --all --parallel",
"test": "nx affected --target=test --all --parallel",
"test:coverage": "nx affected --target=test:coverage --all --parallel",
"test:ui": "nx affected --target=test:ui --all --parallel",
"nm:clear": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +",
"nx:clear": "nx clear-cache",
"nx:graph": "nx graph --skip-nx-cache",
"start:dev": "nx run-many --target=start:dev --all --parallel",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook -o dist/storybook wp5",
"storybook-build": "pnpm build && pnpm storybook",
"analyze": "nx run example:analyze",
"icons:create": "nx run-many --target=icons:create --all --parallel",
"new": "plop",
"size": "pnpm install && pnpm build && size-limit --json",
"ci:version": "changeset version",
"ci:publish": "pnpm build && changeset publish"
},
"dependencies": {
"@babel/core": "^7.18.2",
"@jscutlery/semver": "^2.22.0",
"@nrwl/workspace": "^14.1.4",
"dotenv": "^16.0.1",
"nx": "^14.1.4",
"tslib": "^2.3.0"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.6",
"@changesets/cli": "^2.24.0",
"@mdx-js/preact": "^2.1.2",
"@mdx-js/react": "^2.1.2",
"@nrwl/eslint-plugin-nx": "14.1.5",
"@nrwl/js": "14.1.9",
"@nrwl/linter": "14.1.5",
"@size-limit/preset-small-lib": "^7.0.8",
"@storybook/addon-actions": "^6.5.10",
"@storybook/addon-docs": "^6.5.9",
"@storybook/addon-essentials": "^6.4.22",
"@storybook/addon-links": "^6.4.22",
"@storybook/addons": "^6.5.10",
"@storybook/builder-vite": "^0.1.36",
"@storybook/builder-webpack5": "^6.5.9",
"@storybook/manager-webpack5": "^6.5.9",
"@storybook/react": "^6.4.22",
"@storybook/testing-react": "^1.2.4",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@types/node": "^17.0.26",
"@types/react": "^18.0.6",
"@types/react-dom": "^18.0.2",
"@types/styled-components": "^5.1.25",
"@typescript-eslint/eslint-plugin": "~5.18.0",
"@typescript-eslint/parser": "~5.18.0",
"@vitejs/plugin-react": "^1.3.2",
"@vitest/ui": "^0.15.1",
"c8": "^7.11.3",
"chromatic": "^6.6.3",
"eslint": "~8.12.0",
"eslint-config-prettier": "8.1.0",
"fast-glob": "^3.2.11",
"msw": "^0.42.1",
"msw-storybook-addon": "^1.6.3",
"node-polyfill-webpack-plugin": "^1.1.4",
"plop": "^3.1.1",
"react": "^18.0.0",
"react-animate-height": "^3.0.5",
"react-dom": "^18.0.0",
"react-lazily": "^0.9.1",
"rollup-plugin-dts": "^4.2.1",
"rollup-plugin-node-builtins": "^2.1.2",
"size-limit": "^7.0.8",
"storybook": "^6.5.8",
"styled-components": "^5.3.5",
"ts-node": "9.1.1",
"typescript": "^4.6.3",
"vite": "^2.9.5",
"vite-plugin-dts": "^1.1.1",
"vite-tsconfig-paths": "^3.4.1",
"vitest": "^0.15.1"
},
"msw": {
"workerDirectory": "public"
}
}