-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
92 lines (92 loc) · 2.66 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
{
"name": "vite-component-library-template",
"private": false,
"version": "2.0.4",
"packageManager": "pnpm@8.4.0",
"repository": {
"type": "git",
"url": "https://github.com/IgnacioNMiranda/vite-component-library-template"
},
"main": "./dist/vite-component-library-template.umd.js",
"module": "./dist/vite-component-library-template.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/vite-component-library-template.es.js",
"require": "./dist/vite-component-library-template.umd.js"
},
"./dist/style.css": "./dist/style.css"
},
"engines": {
"node": "18"
},
"scripts": {
"dev": "storybook dev -p 6006",
"build": "storybook build",
"build:lib": "tsc && vite build",
"lint": "eslint --ext .js,.jsx,.ts,.tsx --fix",
"prettier": "prettier --write \"src/**/*.{ts,tsx,js,mdx}\"",
"test": "vitest",
"test:cov": "vitest run --coverage",
"prepare": "husky install",
"prepack": "json -f package.json -I -e \"delete this.devDependencies; delete this.dependencies\""
},
"dependencies": {
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@babel/core": "7.22.10",
"@storybook/addon-essentials": "7.2.2",
"@storybook/addon-interactions": "7.2.2",
"@storybook/addon-links": "7.2.2",
"@storybook/addon-styling": "1.3.6",
"@storybook/blocks": "7.2.2",
"@storybook/react": "7.2.2",
"@storybook/react-vite": "7.2.2",
"@storybook/testing-library": "0.2.0",
"@testing-library/react": "14.0.0",
"@types/node": "20.4.9",
"@types/react": "18.2.20",
"@types/react-dom": "18.2.7",
"@typescript-eslint/eslint-plugin": "5.60.0",
"@vitejs/plugin-react": "4.0.4",
"@vitest/coverage-v8": "0.34.1",
"autoprefixer": "10.4.14",
"babel-loader": "9.1.3",
"eslint": "8.46.0",
"eslint-config-prettier": "9.0.0",
"eslint-config-standard-with-typescript": "37.0.0",
"eslint-plugin-import": "2.28.0",
"eslint-plugin-n": "16.0.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.33.1",
"eslint-plugin-storybook": "0.6.13",
"husky": "8.0.3",
"jsdom": "22.1.0",
"json": "11.0.0",
"lint-staged": "13.2.3",
"postcss": "8.4.27",
"prettier": "3.0.1",
"prop-types": "15.8.1",
"storybook": "7.2.2",
"tailwindcss": "3.3.3",
"typescript": "5.1.6",
"vite": "4.4.9",
"vite-plugin-dts": "3.5.1",
"vitest": "0.34.1"
},
"peerDependencies": {
"react": "18.2.0",
"react-dom": "18.2.0"
},
"files": [
"dist"
],
"lint-staged": {
"*.{ts,tsx,js,jsx,json,css,md}": [
"prettier -w"
]
}
}