forked from DevMountain/full-stack-auth-example
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 764 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 764 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
{
"name": "react-node-auth-db",
"version": "0.1.0",
"private": true,
"main": "./server/index",
"dependencies": {
"axios": "^0.16.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.17.2",
"dotenv": "^4.0.0",
"express": "^4.15.3",
"express-session": "^1.15.5",
"massive": "^3.1.0",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-redux": "^5.0.6",
"react-router-dom": "^4.1.2",
"redux": "^3.7.2",
"redux-promise-middleware": "^4.3.0"
},
"devDependencies": {
"react-scripts": "1.0.10"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"proxy": "http://localhost:3005"
}