-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.29 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
48
{
"name": "react-template",
"version": "0.1.0",
"private": true,
"main": "server/server.js",
"dependencies": {
"axios": "^0.16.2",
"bcrypt": "^1.0.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.17.2",
"connect-mongo": "^1.3.2",
"decision-tree": "^0.3.1",
"dotenv": "^6.0.0",
"express": "^4.15.3",
"express-session": "^1.15.4",
"if-env": "^1.0.4",
"jquery": "^3.3.1",
"moment": "^2.22.2",
"mongoose": "^4.11.4",
"morgan": "^1.8.2",
"mysportsfeeds-node": "^1.0.0",
"passport": "^0.3.2",
"passport-google-oauth": "^1.0.0",
"passport-google-oauth20": "^1.0.0",
"passport-local": "^1.0.0",
"react": "^15.5.4",
"react-bootstrap": "^0.32.1",
"react-dom": "^15.5.4",
"react-native": "^0.56.0",
"react-router-dom": "^4.1.2"
},
"devDependencies": {
"concurrently": "^3.5.0",
"nodemon": "^1.17.5",
"react-scripts": "1.0.7"
},
"scripts": {
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:prod": "node server/server.js",
"start:dev": "concurrently \"nodemon --watch server\" \"react-scripts start\"",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"heroku-postbuild": "yarn build",
"client": "react-scripts start"
},
"proxy": "http://localhost:8080"
}