-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.46 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
{
"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}": [
"eslint --fix"
],
"*.{js,ts,jsx,tsx,vue,md,json}": [
"prettier --write"
]
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.1",
"@storybook/addon-a11y": "^7.4.6",
"@storybook/addon-essentials": "^7.4.6",
"@storybook/addon-interactions": "^7.4.6",
"@storybook/addon-links": "^7.4.6",
"@storybook/blocks": "^7.4.6",
"@storybook/builder-vite": "^7.4.6",
"@storybook/jest": "^0.2.3",
"@storybook/test-runner": "^0.9.4",
"@storybook/testing-library": "^0.0.13",
"@types/testing-library__jest-dom": "^5.14.5",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"@vanilla-extract/css": "^1.11.0",
"@vanilla-extract/vite-plugin": "^3.7.0",
"can-npm-publish": "^1.3.6",
"concurrently": "^7.6.0",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^2.0.0",
"eslint-plugin-vue": "9.27.0",
"http-server": "^14.1.1",
"husky": "^8.0.2",
"jsdom": "^21.1.1",
"lint-staged": "^13.0.3",
"npm-run-all": "^4.1.5",
"playwright": "^1.44.0",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"reg-keygen-git-hash-plugin": "^0.12.1",
"reg-notify-github-plugin": "^0.12.1",
"reg-publish-s3-plugin": "^0.12.1",
"reg-suit": "^0.12.1",
"rimraf": "^3.0.2",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-visualizer": "^5.9.0",
"storybook": "^7.6.19",
"storycap": "^5.0.0",
"turbo": "^1.13.3",
"typescript": "^5.0.2",
"vite": "^5.2.11",
"vite-plugin-dts": "^4.2.2",
"vitest": "^0.29.8",
"wait-on": "^7.0.1"
},
"engines": {
"npm": "use pnpm please!",
"yarn": "use pnpm please!",
"node": ">=20.0.0"
}
}