forked from lifarl/react-scroll-snap-slider
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
89 lines (89 loc) · 2.57 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
{
"name": "@contentco/react-scroll-snap-slider",
"version": "2.10.3",
"description": "",
"main": "dist/index.js",
"module": "dist/module.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "parcel index.html",
"build": "rm -rf ./dist && rollup -c",
"build:pages": "rm -rf ./dist && parcel build index.html --public-url https://hiredigital.github.io/react-scroll-snap-slider/",
"deploy:pages": "gh-pages -d dist",
"test": "jest",
"prepublishOnly": "yarn build"
},
"repository": {
"type": "git",
"url": "https://github.com/hiredigital/react-scroll-snap-slider.git"
},
"homepage": "https://hiredigital.github.io/react-scroll-snap-slider",
"keywords": [
"react",
"carousel",
"scroll snapping",
"scroll snap",
"scroll",
"slider"
],
"author": "hiredigital",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@testing-library/react": "^10.0.2",
"@types/jest": "^25.1.4",
"@types/react": "^16.9.26",
"@types/react-dom": "^16.9.5",
"@types/styled-components": "^5.0.1",
"@types/testing-library__react": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-standard": "^4.0.1",
"gh-pages": "^2.2.0",
"husky": "^4.2.3",
"jest": "^25.2.4",
"lint-staged": "^10.0.10",
"parcel-bundler": "^1.12.4",
"prettier": "^2.0.2",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"rollup": "^2.7.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-filesize": "^7.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-progress": "^1.1.2",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-typescript2": "^0.27.0",
"rollup-plugin-visualizer": "^4.0.4",
"styled-components": "^5.0.1",
"ts-jest": "^25.3.0",
"typescript": "^3.8.3"
},
"peerDependencies": {
"react": ">=16.8.3",
"react-dom": ">=16.8.3",
"styled-components": "^5.0.1"
},
"dependencies": {},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged && yarn test"
}
},
"lint-staged": {
"./src/*.{ts,tsx}": [
"npx prettier --write",
"eslint --fix"
]
}
}