forked from UdacityFrontEndScholarship/quiz-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 991 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
36
37
38
39
40
41
{
"name": "quiz-app",
"version": "0.1.0",
"private": true,
"proxy": {
"/auth/google": {
"target": "http://localhost:5000"
},
"/api/*": {
"target": "http://localhost:5000"
}
},
"dependencies": {
"axios": "^0.18.0",
"bootstrap": "^4.0.0",
"chart.js": "^2.7.2",
"cookie-session": "^2.0.0-beta.3",
"express": "^4.16.3",
"jquery": "^3.3.1",
"mongoose": "^5.0.17",
"nodemon": "^1.17.3",
"passport": "^0.4.0",
"passport-google-oauth20": "^1.0.0",
"popper.js": "^1.14.3",
"react": "^16.3.1",
"react-bootstrap": "^0.32.1",
"react-chartjs-2": "^2.7.2",
"react-dom": "^16.3.1",
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"react-scripts": "^1.1.4",
"redux": "^4.0.0",
"redux-thunk": "^2.2.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
}
}