forked from Emiliano-Bucci/react-spring-carousel-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 3.12 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
{
"name": "react-spring-carousel-js",
"version": "1.9.9",
"description": "A new Carousel experience for the web",
"homepage": "https://react-spring-carousel-js.emilianobucci.com",
"repository": "https://github.com/Emiliano-Bucci/react-spring-carousel-js",
"author": "Emiliano Bucci",
"license": "MIT",
"keywords": [
"react",
"react-spring",
"carousel",
"react-carousel",
"react-spring-carousel",
"slider",
"react-slider",
"react-spring-slider",
"animated"
],
"scripts": {
"start": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"build:lib": "rollup -c",
"lint": "eslint --fix --config .eslintrc.js 'src/**/*.{ts,tsx,js}'",
"prepare": "husky install",
"lint-staged": "lint-staged",
"test": "NODE_ENV=test jest --watch",
"check:tag:branch": "node --experimental-modules scripts/release.js",
"release:test": "jest",
"push:tags": "git push --follow-tags",
"release:lib": "npm run lint && npm run release:test && npm run check:tag:branch && npm run build:lib && npm run push:tags && npm publish",
"storybook": "start-storybook -p 6006"
},
"main": "dist/index.umd.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"dependencies": {
"react-spring": "^9.1.0",
"react-use-gesture": "^9.1.3",
"rxjs": "^6.6.7",
"screenfull": "^5.1.0"
},
"devDependencies": {
"@babel/core": "^7.13.15",
"@babel/preset-env": "^7.14.1",
"@babel/preset-react": "^7.13.13",
"@emotion/babel-plugin": "^11.3.0",
"@emotion/babel-preset-css-prop": "^11.2.0",
"@emotion/jest": "^11.3.0",
"@emotion/react": "^11.1.5",
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@storybook/addon-actions": "^6.2.7",
"@storybook/addon-essentials": "^6.2.7",
"@storybook/addon-links": "^6.2.7",
"@storybook/react": "^6.0.28",
"@testing-library/jest-dom": "^5.11.10",
"@testing-library/react": "^11.2.6",
"@types/jest": "^26.0.22",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"babel-loader": "^8.2.2",
"chalk": "^2.4.2",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^3.10.2",
"git-repo-info": "^2.1.1",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"rollup": "^2.45.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-filesize": "^9.1.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"rollup-plugin-visualizer": "^5.4.1",
"ts-jest": "^26.5.4",
"typescript": "^4.2.4"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix --config .eslintrc.precommit.js"
]
}
}