-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
71 lines (71 loc) · 1.78 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
{
"name": "react-circular-input",
"version": "0.2.4",
"description": "React components for easily composing a circular range input",
"author": "petecorreia",
"license": "MIT",
"homepage": "https://react-circular-input.now.sh",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"start": "tsc -w -p tsconfig.lib.json",
"build": "rm -rf dist && tsc -p tsconfig.lib.json",
"prepare": "npm run build",
"format": "prettier --config .prettierrc --write \"src/**/*\"",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
"docs:dev": "next",
"docs:build": "next build",
"now-build": "npm run docs:build"
},
"peerDependencies": {
"react": ">= 16.8.0",
"react-dom": ">= 16.8.0"
},
"devDependencies": {
"@types/node": "^14.14.31",
"@types/react": "^17.0.2",
"@types/styled-components": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"babel-plugin-styled-components": "^1.12.0",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"next": "^10.0.7",
"polished": "^4.1.1",
"prettier": "^2.2.1",
"prismjs": "^1.23.0",
"react": ">=17.0.1",
"react-dom": ">=17.0.1",
"react-spring": "^8.0.27",
"strip-indent": "^3.0.0",
"styled-components": "^5.2.1",
"typescript": "^4.2.2"
},
"bugs": {
"url": "https://github.com/petecorreia/react-circular-input/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/petecorreia/react-circular-input.git"
},
"keywords": [
"react",
"circular",
"input",
"radial",
"gauge",
"knob",
"react-circular-input",
"svg",
"touch",
"react-component",
"presentational"
]
}