forked from victor36max/next-saga-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 892 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 892 Bytes
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
{
"name": "next-saga-example",
"version": "1.0.0",
"description": "Example of using next.js with redux-saga",
"main": "index.js",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start"
},
"author": "Victor Chan (victor36max@gmail.com)",
"license": "ISC",
"dependencies": {
"axios": "^0.18.0",
"babel-plugin-inline-dotenv": "^1.1.2",
"babel-plugin-transform-inline-environment-variables": "^0.4.3",
"next": "^6.1.1",
"next-redux-wrapper": "^2.0.0",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"redux-actions": "^2.6.1",
"redux-saga": "^0.16.0"
},
"devDependencies": {
"eslint": "^5.2.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0"
}
}