forked from sebinsua/local-redux-devtools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.53 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
{
"name": "local-redux-devtools",
"version": "0.2.3",
"description": "Standalone Local Redux DevTools",
"entry": "./index.js",
"main": "./dist/index.js",
"module": "./dist/index.es",
"types": "./index.d.ts",
"repository": "[email protected]:sebinsua/local-redux-devtools.git",
"author": "Seb Insua <[email protected]>",
"license": "MIT",
"keywords": [
"redux",
"devtools",
"flux",
"react",
"hot reloading",
"time travel",
"live edit",
"local",
"safe"
],
"engines": {
"node": ">= 6",
"npm": ">= 3"
},
"bin": {
"redux-server": "./bin/redux-server.js",
"redux-devtools": "./bin/redux-devtools.js"
},
"lint-staged": {
"{app,bin,.}/*.js": [
"prettier --write",
"git add"
]
},
"scripts": {
"commitmsg": "validate-commit-msg",
"build": "npm run -s build:lib",
"build:lib": "rollup -c ./rollup.config.js"
},
"peerDependencies": {
"redux": ">= 3"
},
"dependencies": {
"@types/remote-redux-devtools": "^0.5.0",
"cross-spawn": "^5.1.0",
"electron": "^1.6.11",
"remote-redux-devtools": "0.5.0",
"remotedev-server": "^0.2.3"
},
"devDependencies": {
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babelrc-rollup": "^3.0.0",
"husky": "^0.14.3",
"lint-staged": "^4.0.2",
"prettier": "^1.5.3",
"redux": "^3.7.2",
"rollup": "^0.45.2",
"rollup-plugin-babel": "^2.7.1",
"validate-commit-msg": "^2.12.2"
}
}