-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.73 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.73 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
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
{
"private": true,
"scripts": {
"format": "prettier --write '**/*.{js,jsx,ts,tsx,vue,md,json}'",
"lint": "eslint --ext .js,.ts,.jsx,.tsx,.vue .",
"prepare": "husky install",
"release": "changeset publish",
"build": "turbo build",
"build:tools": "turbo build:tools",
"dev": "turbo dev --parallel",
"test": "turbo test",
"vrt": "reg-suit run",
"storycap": "turbo storycap --no-cache",
"storybook:build": "turbo storybook:build",
"postinstall": "turbo build:tools"
},
"lint-staged": {
"*.{js,ts,jsx,tsx,vue}": [
"npx eslint --fix"
],
"*.{js,ts,jsx,tsx,vue,md,json}": [
"npx prettier --write"
]
},
"devDependencies": {
"@changesets/changelog-github": "0.5.1",
"@changesets/cli": "2.29.3",
"@chromatic-com/storybook": "^3.2.6",
"@eslint/compat": "^1.2.9",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.26.0",
"@storybook/addon-a11y": "8.6.12",
"@storybook/addon-essentials": "8.6.12",
"@storybook/addon-interactions": "8.6.12",
"@storybook/addon-links": "8.6.12",
"@storybook/addons": "^7.6.17",
"@storybook/blocks": "8.6.12",
"@storybook/builder-vite": "8.6.12",
"@storybook/test": "^8.6.12",
"@storybook/test-runner": "0.22.0",
"@types/testing-library__jest-dom": "^5.14.9",
"@typescript-eslint/eslint-plugin": "8.32.1",
"@typescript-eslint/parser": "8.32.1",
"@vanilla-extract/css": "^1.17.1",
"@vanilla-extract/vite-plugin": "5.0.1",
"can-npm-publish": "^1.3.6",
"concurrently": "9.1.2",
"eslint": "9.26.0",
"eslint-config-prettier": "10.1.5",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "5.2.0",
"eslint-plugin-unused-imports": "4.1.4",
"eslint-plugin-vue": "10.1.0",
"globals": "^16.1.0",
"http-server": "^14.1.1",
"husky": "9.1.7",
"jsdom": "26.1.0",
"lint-staged": "16.0.0",
"npm-run-all": "^4.1.5",
"playwright": "^1.52.0",
"prettier": "3.5.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"reg-keygen-git-hash-plugin": "0.14.3",
"reg-notify-github-plugin": "0.14.4",
"reg-publish-s3-plugin": "0.14.4",
"reg-suit": "0.14.4",
"rimraf": "6.0.1",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-visualizer": "^5.14.0",
"storybook": "8.6.12",
"storycap": "^5.0.1",
"turbo": "^2.5.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.1",
"vite": "^6.3.5",
"vite-plugin-dts": "^4.5.3",
"vitest": "^3.1.3",
"vue-eslint-parser": "10.1.3",
"wait-on": "^8.0.3"
},
"engines": {
"npm": "use pnpm please!",
"yarn": "use pnpm please!",
"node": ">=20.0.0"
},
"packageManager": "pnpm@10.8.1",
"name": "wiz-ui"
}