-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
66 lines (66 loc) · 1.74 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
{
"name": "react-toggle-component",
"version": "3.0.8",
"description": "A React UI Component to display an awesome Toggle Button control",
"private": false,
"main": "dist/index.js",
"keywords": [
"toggle",
"component",
"react",
"react-component",
"docz",
"typescript",
"hooks"
],
"homepage": "http://gfazioli.github.io/react-toggle/",
"repository": {
"type": "git",
"url": "https://github.com/gfazioli/react-toggle"
},
"bugs": {
"url": "https://github.com/gfazioli/react-toggle/issues"
},
"author": "Giovambattista Fazioli",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.4.3",
"@types/node": "12.12.7",
"@types/react": "^16.8.23",
"@types/react-dom": "^16.8.4",
"@types/styled-components": "^4.1.19",
"@types/webpack": "4.39.8",
"babel-loader": "^8.0.4",
"prettier": "1.19.1",
"ts-loader": "^6.2.1",
"ts-node": "^8.0.3",
"tslint": "^6.0.0-beta0",
"tslint-config-prettier": "^1.18.0",
"typescript": "3.7.2",
"typescript-styled-plugin": "^0.15.0",
"webpack": "^4.29.5",
"webpack-cli": "^3.3.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"docz": "^v2.0.0-rc.75",
"@emotion/core": "^10.0.14",
"@emotion/styled": "^10.0.14",
"gatsby": "^2.17.8",
"gatsby-theme-docz": "^2.0.0-rc.75",
"scheduler": "^0.17.0",
"styled-components": "^4.2.0"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"styled-components": "^4.2.0"
},
"dependencies": {
"react-use": "^13.2.1"
},
"scripts": {
"dev": "docz dev",
"build": "docz build",
"production": "tsc --project tsconfig.json && git add dist && ./node_modules/tslint/bin/tslint './src/**/*.ts{,x}'"
}
}