This repository has been archived by the owner on Jun 5, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
99 lines (99 loc) · 3.04 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
93
94
95
96
97
98
99
{
"name": "redux-devtools-inspector",
"version": "0.11.3",
"description": "Redux DevTools Diff Monitor",
"scripts": {
"build:lib": "NODE_ENV=production babel src --out-dir lib",
"build:demo": "NODE_ENV=production webpack -p",
"stats": "webpack --profile --json > stats.json",
"start": "webpack-dev-server",
"lint": "eslint --ext .jsx,.js --max-warnings 0 src",
"preversion": "npm -s run lint & npm -s run flow",
"version": "npm -s run build:demo && git add -A .",
"postversion": "git push",
"prepublish": "npm run build:lib",
"gh": "git-directory-deploy --directory demo/dist --branch gh-pages",
"flow": "flow",
"test": "npm -s run lint && npm -s run flow"
},
"main": "lib/index.js",
"repository": {
"url": "https://github.com/alexkuz/redux-devtools-inspector"
},
"keywords": [
"react",
"reactjs"
],
"devDependencies": {
"babel": "^6.3.26",
"babel-cli": "^6.4.5",
"babel-core": "^6.4.5",
"babel-eslint": "^7.1.0",
"babel-loader": "^6.2.2",
"babel-plugin-react-transform": "^2.0.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-runtime": "^6.4.3",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"base16": "^1.0.0",
"chokidar": "^1.6.1",
"clean-webpack-plugin": "^0.1.8",
"eslint": "^3.9.1",
"eslint-loader": "^1.2.1",
"eslint-plugin-babel": "^4.1.0",
"eslint-plugin-flowtype": "^2.30.0",
"eslint-plugin-react": "^6.6.0",
"export-files-webpack-plugin": "0.0.1",
"flow-bin": "^0.40.0",
"git-directory-deploy": "^1.5.1",
"html-webpack-plugin": "^2.8.1",
"imports-loader": "^0.7.1",
"json-loader": "^0.5.4",
"lodash.shuffle": "^4.2.0",
"nyan-progress-webpack-plugin": "^1.1.4",
"pre-commit": "^1.1.3",
"raw-loader": "^0.5.1",
"react": "^15.3.2",
"react-bootstrap": "^0.30.6",
"react-dom": "^15.3.2",
"react-input-enhancements": "^1.0.0-beta2",
"react-redux": "^5.0.3",
"react-router": "^3.0.0",
"react-router-redux": "^4.0.2",
"react-transform-hmr": "^1.0.2",
"redux": "^3.3.1",
"redux-devtools": "^3.1.0",
"redux-devtools-dock-monitor": "^1.0.1",
"redux-logger": "^2.5.2",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.1"
},
"peerDependencies": {
"react": ">=15.0.0",
"react-dom": ">=15.0.0"
},
"author": "Alexander <alexkuz@gmail.com> (http://kuzya.org/)",
"contributors": [
"Mihail Diordiev <zalmoxisus@gmail.com> (https://github.com/zalmoxisus)"
],
"license": "MIT",
"dependencies": {
"babel-runtime": "^6.3.19",
"dateformat": "^2.0.0",
"hex-rgba": "^1.0.0",
"immutable": "^3.7.6",
"javascript-stringify": "^1.1.0",
"jsondiffpatch": "^0.2.4",
"jss": "^6.0.0",
"jss-nested": "^3.0.0",
"jss-vendor-prefixer": "^4.0.0",
"lodash.debounce": "^4.0.3",
"react-base16-styling": "^0.4.1",
"react-json-tree": "^0.10.5",
"redux-devtools-themes": "^1.0.0"
},
"pre-commit": [
"lint"
]
}