forked from aholachek/redux-usage-report
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.58 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
{
"name": "redux-usage-report",
"version": "1.3.1",
"description": "A Redux devtools monitor focused on your app's usage of the Redux store",
"main": "dist/index.js",
"scripts": {
"test": "NODE_ENV=test jest",
"build": "NODE_ENV=production ./node_modules/.bin/babel src -d dist --ignore node_modules,src/lib; cp -r src/lib dist/",
"prepublish": "npm run build"
},
"author": "Alex Holachek",
"repository": {
"type": "git",
"url": "https://github.com/aholachek/redux-usage-report"
},
"license": "ISC",
"dependencies": {
"deep-object-diff": "^1.0.4",
"lodash.debounce": "^4.0.8",
"lodash.isequal": "^4.5.0",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-json-tree": "^0.11.0",
"redux": "^3.7.2",
"stacktrace-js": "^2.0.0",
"styled-components": "^3.1.6"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^22.0.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-runtime": "^6.26.0",
"eslint": "^4.1.1",
"eslint-config-react-app": "^2.1.0",
"eslint-plugin-flowtype": "^2.34.1",
"eslint-plugin-import": "^2.6.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.1.0",
"jest": "^22.0.1"
},
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
}
}