-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
49 lines (49 loc) · 1.37 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
{
"name": "next-connect-redux",
"version": "0.1.6",
"description": "Connect next.js to redux",
"main": "dist/index.js",
"scripts": {
"build": "babel lib/index.js -o dist/index.js",
"dev": "nodemon --watch ./lib --exec babel lib/index.js -o dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/huzidaha/next-connect-redux.git"
},
"keywords": [
"Next.js",
"redux"
],
"author": "huzidaha",
"license": "MIT",
"bugs": {
"url": "https://github.com/huzidaha/next-connect-redux/issues"
},
"devDependencies": {
"ava": "^0.18.1",
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.4.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "6.23.0",
"babel-preset-stage-0": "^6.16.0",
"eslint": "^3.13.1",
"eslint-config-standard": "^6.2.1",
"eslint-config-standard-jsx": "^3.2.0",
"eslint-config-standard-react": "^4.2.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-react": "^6.9.0",
"eslint-plugin-standard": "^2.0.1",
"nodemon": "^1.11.0"
},
"peerDependencies": {
"react": "*",
"redux": "*",
"react-redux": "*",
"prop-types": "*"
},
"homepage": "https://github.com/huzidaha/next-connect-redux#readme"
}