-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
92 lines (92 loc) · 2.88 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
90
91
92
{
"name": "retoggle",
"version": "1.2.1",
"main": "lib/index.js",
"author": "Raathi Kugarajan (https://github.com/Raathigesh)",
"repository": {
"type": "git",
"url": "https://github.com/Raathigesh/retoggle.git"
},
"description": "UI controls as React Hooks to control your component state from outside",
"homepage": "https://retoggle.debuggable.io/",
"license": "MIT",
"bugs": {
"url": "https://github.com/Raathigesh/retoggle/issues"
},
"keywords": [
"react",
"hooks",
"storybook"
],
"typings": "lib/index.d.ts",
"dependencies": {},
"scripts": {
"start": "webpack-dev-server --env.development --config ./config/webpack.dev.config.js",
"test": "jest",
"build-docs": "cross-env BABEL_ENV='production' rimraf dist && webpack --env.production --config ./config/webpack.dev.config.js",
"build": "cross-env BABEL_ENV='production' rimraf lib && webpack --env.production --config ./config/webpack.lib.config.js && tsc",
"clean": "rimraf ./dist && rimraf ./lib",
"docz:dev": "docz dev",
"docz:build": "docz build"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-decorators": "^7.1.2",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@smooth-ui/core-sc": "^7.0.4",
"@types/jest": "^23.3.9",
"@types/react": "^16.8.5",
"@types/react-dom": "^16.8.2",
"@types/react-kawaii": "^0.11.0",
"@types/react-sparklines": "^1.7.0",
"@types/styled-components": "4.1.11",
"@types/webpack": "^4.4.17",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"cross-env": "^5.2.0",
"css-loader": "^1.0.1",
"docz": "^0.12.9",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"html-webpack-template": "^6.2.0",
"jest": "^23.6.0",
"react": "^16.8.3",
"react-color": "^2.14.1",
"react-compound-slider": "^0.16.2",
"react-dom": "16.8.3",
"react-feather": "^1.1.4",
"react-json-view": "^1.19.1",
"react-kawaii": "^0.6.0",
"react-popper": "^1.3.0",
"react-sparklines": "^1.7.0",
"react-testing-library": "^5.2.3",
"rimraf": "^2.6.2",
"style-loader": "^0.23.1",
"styled-components": "^4.0.3",
"typeface-nunito": "^0.0.54",
"typescript": "^3.5.1",
"url-loader": "^1.1.2",
"webpack": "^4.24.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
},
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0"
}
}