generated from CodelyTV/typescript-react_library-vite_template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
72 lines (72 loc) · 2.04 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
{
"name": "@codelytv/react-carousel",
"author": "codelytv",
"license": "MIT",
"version": "1.0.3",
"type": "module",
"files": [
"dist"
],
"main": "./dist/react-carousel.umd.cjs",
"module": "./dist/react-carousel.js",
"types": "./dist/index.d.ts",
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"scripts": {
"build": "vite build",
"lint": "eslint --ignore-path .gitignore . && stylelint **/*.scss",
"lint:fix": "eslint --fix --ignore-path .gitignore . && stylelint --fix **/*.scss",
"docs": "storybook dev -p 6006",
"build:docs": "storybook build",
"cy:open": "cypress open",
"cy:run": "cypress run --component"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@storybook/addon-essentials": "^7.0.17",
"@storybook/addon-interactions": "^7.0.17",
"@storybook/addon-links": "^7.0.17",
"@storybook/blocks": "^7.0.17",
"@storybook/react": "^7.0.17",
"@storybook/react-vite": "^7.0.17",
"@storybook/testing-library": "^0.1.0",
"@swc/core": "^1.3.42",
"@testing-library/cypress": "^9.0.0",
"@types/node": "^16.18.21",
"@types/react": "^18.0.30",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react": "^3.1.0",
"cypress": "^12.9.0",
"eslint": "^8.36.0",
"eslint-config-codely": "^2.1.3",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-storybook": "^0.6.12",
"identity-obj-proxy": "^3.0.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.60.0",
"storybook": "^7.0.17",
"stylelint": "^14.16.1",
"stylelint-config-rational-order": "^0.0.4",
"stylelint-config-standard-scss": "^3.0.0",
"stylelint-order": "^5.0.0",
"typescript": "^4.9.5",
"vite": "^4.3.8",
"vite-plugin-css-injected-by-js": "^3.1.1",
"vite-plugin-dts": "^2.3.0"
}
}