forked from acrool/acrool-react-carousel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.21 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.21 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
{
"name": "bear-react-carousel",
"version": "4.0.8",
"description": "Most modern mobile touch slider with hardware accelerated transitions for ReactJS",
"keywords": [
"react",
"typescript",
"flexbox",
"slider",
"carousel",
"swiper"
],
"private": false,
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/imagine10255/bear-react-carousel.git"
},
"module": "./dist/bear-react-carousel.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/bear-react-carousel.es.js"
},
"./dist/index.css": "./dist/style.css"
},
"files": [
"dist"
],
"engines": {
"node": ">=14"
},
"scripts": {
"dev": "NODE_ENV=development vite build -w",
"build:claer": "rm -rf ./dist",
"prepublishOnly": "run-s build",
"build": "run-s build:claer && tsc && vite build",
"preview": "vite preview",
"lint:fix": "eslint ./src --fix",
"cz": "git-cz",
"test": "jest",
"test:coverage": "jest --coverage",
"gitlog": "git log --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cblueby %an %Cgreen(%cr)%Creset'",
"release": "standard-version --release-as"
},
"dependencies": {
"react": "^18.x",
"react-dom": "^18.x",
"ulid": "^2.3.0"
},
"devDependencies": {
"@swc/jest": "^0.2.26",
"@testing-library/dom": "^9.3.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react-swc": "^3.0.0",
"classnames": "^2.3.2",
"cz-git": "^1.6.1",
"eslint": "^8.37.0",
"eslint-config-react-app": "^7.0.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"npm-run-all": "^4.1.5",
"rollup-plugin-visualizer": "^5.9.0",
"standard-version": "^9.5.0",
"ts-jest": "^29.1.0",
"typescript": "^4.9.3",
"vite": "^4.2.0",
"vite-plugin-dts": "^2.1.0",
"vite-plugin-eslint": "^1.8.1"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
}
}