-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
47 lines (47 loc) · 1.4 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
{
"name": "create-next-saga-persist-app",
"description": "A ready-to-use utility boilerplate to get your project started right away with just one single command. It sets up redux-saga and redux-persist with NextJs and makes it production ready. If you are a NextJs lover and need Redux for your next project this is definately the right boilerplate to start with.",
"version": "1.1.3",
"author": "Rishav Raj Kumar",
"bin": {
"create-next-saga-persist-app": "./bin/create-app.js"
},
"keywords": [
"react",
"next",
"nextjs",
"boilerplate",
"starter",
"redux",
"redux-saga",
"redux-persist"
],
"license": "MIT",
"homepage": "https://github.com/rishav4101/create-next-saga-persist-app",
"repository": {
"type": "git",
"url": "https://github.com/rishav4101/create-next-saga-persist-app.git"
},
"bugs": "https://github.com/rishav4101/create-next-saga-persist-app/issues",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "echo \"No test specified\""
},
"dependencies": {
"next": "11.0.1",
"next-redux-wrapper": "^7.0.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-redux": "^7.2.4",
"redux-persist": "^6.0.0",
"redux-saga": "^1.1.3",
"rimraf": "^3.0.2"
},
"devDependencies": {
"eslint": "7.30.0",
"eslint-config-next": "11.0.1"
}
}