forked from gfazioli/react-toggle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.72 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.72 KB
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
{
"name": "@aditm1996/react-toggle-component",
"version": "2.0.12",
"private": false,
"description": "A React UI Component to display an awesome Toggle Button control",
"main": "dist/index.js",
"keywords": [
"toggle",
"component",
"react",
"react-component",
"docz",
"typescript",
"hooks"
],
"homepage": "http://gfazioli.github.io/react-toggle/",
"repository": {
"type": "git",
"url": "git+https://github.com/gfazioli/react-toggle.git"
},
"bugs": {
"url": "https://github.com/gfazioli/react-toggle/issues"
},
"author": "Giovambattista Fazioli",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.4.4",
"@emotion/cache": "^10.0.15",
"@emotion/core": "^10.0.15",
"@emotion/styled-base": "^10.0.15",
"@types/node": "11.11.7",
"@types/webpack": "4.4.31",
"babel-loader": "^8.0.6",
"docz": "^0.13.7",
"docz-theme-default": "^0.13.7",
"husky": "^1.3.1",
"prettier": "1.16.4",
"ts-loader": "^5.3.0",
"ts-node": "^8.0.3",
"tslint": "^5.14.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.3.4000",
"webpack": "^4.29.5",
"webpack-cli": "^3.3.6"
},
"dependencies": {
"@types/react": "16.8.17",
"@types/react-dom": "16.8.5",
"@types/styled-components": "^4.1.18",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"styled-components": "^4.2.0"
},
"scripts": {
"prepare": "tsc -p tsconfig.json",
"dev": "docz dev",
"precommit": "tsc --project tsconfig.json && ./node_modules/tslint/bin/tslint './src/**/*.ts{,x}'",
"docz:dev": "docz dev",
"docz:build": "docz build",
"build": "yarn postinstall && yarn docz:build"
},
"directories": {
"doc": "docs"
}
}