-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 896 Bytes
/
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
{
"name": "next-jwt-authentication",
"version": "1.0.0",
"scripts": {
"dev": "node server.js",
"build": "next build",
"start": "NODE_ENV=production node server.js"
},
"dependencies": {
"axios": "^0.17.1",
"bootstrap": "^4.3.1",
"cookie-parser": "^1.4.3",
"dev-logger-simple": "^0.1.1",
"express": "^4.14.0",
"js-cookie": "^2.2.0",
"jwt-decode": "^2.2.0",
"next": "^7.0.2",
"next-nprogress": "^1.4.0",
"next-redux-wrapper": "^2.0.0",
"react": "^16.8.0",
"react-bootstrap": "^1.0.0-beta.6",
"react-dom": "^16.8.0",
"react-helmet": "^5.2.0",
"react-redux": "^6.0.0",
"redux": "^4.0.1",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"babel-eslint": "^8.2.1",
"eslint": "^4.17.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-react": "^7.6.1"
}
}