generated from IgnacioNMiranda/vite-component-library-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 2.99 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
{
"name": "tbsui-ssr",
"author": "thebigsasha <[email protected]>",
"description": "A React component library which is capable of being deployed with javascript on the client.",
"private": false,
"version": "1.11.1",
"packageManager": "[email protected]",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": "18"
},
"scripts": {
"dev": "storybook dev -p 6006",
"build": "storybook build",
"build:lib": "tsc && vite build",
"prettier": "prettier --write \"src/**/*.{ts,tsx,js,mdx}\"",
"test": "vitest",
"lint": "eslint",
"test:cov": "vitest run --coverage",
"prepare": "husky install",
"prepack": "json -f package.json -I -e \"delete this.devDependencies; delete this.dependencies\""
},
"peerDependencies": {
"react": "18.2.0",
"react-dom": "18.2.0"
},
"files": [
"dist"
],
"lint-staged": {
"*.{ts,tsx,js,jsx,json,css,md}": [
"prettier -w"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheBigSasha/tbsui-ssr.git"
},
"sideEffects": [
"**/*.css"
],
"keywords": [
"react",
"components",
"ssr",
"serer",
"side",
"static",
"select",
"popup",
"nextjs",
"sass"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/TheBigSasha/tbsui-ssr/issues"
},
"homepage": "https://thebigsasha.github.io/tbsui-ssr/",
"dependencies": {
"lightningcss": "^1.24.1",
"postcss-modules": "^6.0.0",
"postcss-nested": "^6.0.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"sass": "^1.75.0",
"vite-plugin-lib-inject-css": "^2.0.1",
"vite-plugin-sass-dts": "^1.3.17"
},
"devDependencies": {
"@babel/core": "7.24.4",
"@storybook/addon-essentials": "8.0.8",
"@storybook/addon-interactions": "8.0.8",
"@storybook/addon-links": "8.0.8",
"@storybook/addon-styling": "1.3.7",
"@storybook/blocks": "8.0.8",
"@storybook/react": "8.0.8",
"@storybook/react-vite": "8.0.8",
"@storybook/testing-library": "0.2.2",
"@testing-library/react": "15.0.2",
"@types/node": "20.12.7",
"@types/react": "18.2.79",
"@types/react-dom": "18.2.25",
"@typescript-eslint/eslint-plugin": "7.7.0",
"@vitejs/plugin-react": "4.2.1",
"@vitest/coverage-v8": "1.5.0",
"autoprefixer": "10.4.19",
"babel-loader": "9.1.3",
"eslint": "9.1.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-standard-with-typescript": "43.0.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-n": "17.2.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.34.1",
"eslint-plugin-storybook": "0.8.0",
"glob": "^10.3.12",
"husky": "9.0.11",
"i": "^0.3.7",
"jsdom": "24.0.0",
"json": "11.0.0",
"lint-staged": "15.2.2",
"postcss": "8.4.38",
"prettier": "3.2.5",
"prop-types": "15.8.1",
"storybook": "8.0.8",
"typescript": "5.4.5",
"vite": "5.2.10",
"vite-plugin-dts": "3.8.3",
"vitest": "1.5.0"
}
}