This repository has been archived by the owner on Sep 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
68 lines (68 loc) · 2.07 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
{
"name": "@farbenmeer/react-spring-slider",
"version": "1.5.2",
"main": "dist/index.js",
"license": "MIT",
"author": {
"name": "farbenmeer GmbH",
"email": "[email protected]",
"url": "https://farbenmeer.de/"
},
"repository": {
"type": "git",
"url": "https://github.com/farbenmeer/react-spring-slider.git"
},
"bugs": {
"url": "https://github.com/farbenmeer/react-spring-slider/issues"
},
"homepage": "https://github.com/farbenmeer/react-spring-slider",
"files": [
"/dist"
],
"scripts": {
"build": "tsc --build tsconfig.json",
"lint": "eslint --ext js,jsx,ts,tsx . && prettier --check .",
"lint-fix": "eslint --ext js,jsx,ts,tsx --fix . && prettier --write .",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook --output-dir docs ",
"clean": "rm -rf dist node_modules",
"release": "semantic-release",
"prepare": "husky install"
},
"lint-staged": {
"./src/**/*.{ts,tsx,js,jsx}": "eslint --cache --fix",
"*": "prettier --write --ignore-unknown"
},
"dependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-spring": "^9.4.4",
"react-use-gesture": "^9.0.0",
"styled-components": "^5.3.5"
},
"devDependencies": {
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@storybook/addon-essentials": "^6.4.22",
"@storybook/addons": "^6.4.22",
"@storybook/react": "^6.4.22",
"@types/node": "^14.18.16",
"@types/styled-components": "^5.1.25",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"babel-loader": "^8.2.5",
"editorconfig-checker": "^4.0.2",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"husky": "^8.0.0",
"lint-staged": "^13.0.0",
"prettier": "^2.6.2",
"semantic-release": "^19.0.3",
"ts-loader": "^9.3.0",
"typescript": "^4.6.4"
}
}