-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.15 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
{
"name": "redux-multiple-states-nextjs",
"version": "1.0.0",
"description": "A prototype built with React, Redux, and NextJS (for routing) that shows how one can do CRUD to multiple state trees within a single webapp. Uses fast-redux, now you don't need to use constants for action types to match actions with reducers, as compared to conventional redux.",
"main": "server.js",
"repository": "http://www.example.com",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "next dev",
"next": "next",
"build": "next build",
"start": "next build;next start;",
"analyze": "cross-env ANALYZE=1 next build"
},
"keywords": [],
"author": "Joshua Quek",
"license": "MIT",
"dependencies": {
"cross-env": "^5.0.1",
"webpack-bundle-analyzer": "^2.8.3",
"express": "^4.15.2",
"fast-redux": "~0.3.0",
"framework7": "^2.0.10",
"next": "^4.0.0-beta.3",
"next-redux-wrapper": "~1.3.2",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "~5.0.5",
"redux": "~3.7.2",
"redux-devtools-extension": "~2.13.2",
"redux-thunk": "~2.2.0",
"styled-jsx": "^2.2.5"
}
}