-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
110 lines (110 loc) · 3.42 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
{
"name": "headless-stepper-monorepo",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"dev": "nx run headless-stepper:storybook",
"dev:docs": "cd docs && npm run dev",
"prebuild": "cp -r ./README.md ./packages/headless-stepper",
"build:lib-fast": "npm run prebuild && pnpm exec tsup --config packages/headless-stepper/tsup.config.ts",
"build:lib": "npm run prebuild && pnpm exec tsup --config packages/headless-stepper/tsup.config.ts --dts-resolve",
"build:all": "pnpm run build:lib",
"nx": "nx",
"publish:prod": "npm run build:all && cd ./packages/headless-stepper && npm publish",
"publish:dev": "npm run build:all && cd ./packages/headless-stepper && npm publish --tag next",
"size": "size-limit",
"analyze": "size-limit --why",
"test": "nx test headless-stepper",
"test:watch": "npm run nx run headless-stepper:test -- --watch",
"local-registry": "nx run local-registry",
"ci:version": "changeset version",
"ci:publish": "changeset publish"
},
"private": true,
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/preset-react": "^7.24.1",
"@babel/preset-typescript": "7.12.13",
"@nrwl/rollup": "19.0.2",
"@nx/cypress": "19.0.2",
"@nx/eslint": "19.0.2",
"@nx/eslint-plugin": "19.0.2",
"@nx/js": "19.0.2",
"@nx/react": "19.0.2",
"@nx/storybook": "19.0.2",
"@nx/vite": "19.0.2",
"@nx/web": "19.0.2",
"@nx/workspace": "19.0.2",
"@size-limit/preset-big-lib": "^7.0.8",
"@storybook/addon-essentials": "7.6.4",
"@storybook/builder-vite": "^7.6.18",
"@storybook/core-server": "7.6.4",
"@storybook/react": "7.6.4",
"@storybook/react-vite": "^8.0.10",
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "15.0.7",
"@types/node": "18.19.31",
"@types/react": "18.3.1",
"@types/react-dom": "18.3.0",
"@types/testing-library__jest-dom": "^5.14.9",
"@typescript-eslint/eslint-plugin": "7.7.1",
"@typescript-eslint/parser": "7.7.1",
"autoprefixer": "10.4.13",
"babel-loader": "8.1.0",
"babel-plugin-optimize-clsx": "^2.6.2",
"css-loader": "^6.11.0",
"cypress": "^9.7.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-cypress": "2.15.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-react": "7.31.11",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-storybook": "^0.6.15",
"jsdom": "22.1.0",
"next-transpile-modules": "^9.1.0",
"nx": "19.0.2",
"nx-cloud": "18.0.1",
"postcss": "8.4.19",
"prettier": "2.7.1",
"react-refresh": "^0.10.0",
"size-limit": "^7.0.8",
"storybook": "7.0.24",
"style-loader": "^3.3.4",
"stylus": "0.59.0",
"stylus-loader": "^7.1.3",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typescript": "5.4.5",
"url-loader": "^4.1.1",
"verdaccio": "^5.30.3",
"vite": "^5.2.10",
"vite-tsconfig-paths": "4.2.0",
"vitest": "1.5.2"
},
"workspaces": [
"packages/**"
],
"dependencies": {
"@changesets/cli": "^2.27.1",
"core-js": "3.36.1",
"next": "^14.2.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"tslib": "^2.6.2"
},
"size-limit": [
{
"path": "packages/headless-stepper/dist/index.js",
"limit": "15 KB"
},
{
"path": "packages/headless-stepper/dist/index.mjs",
"limit": "15 KB"
}
],
"nx": {
"includedScripts": []
}
}