-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.45 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "iauto-api",
"version": "1.0.0",
"description": "iAuto api",
"main": "server.js",
"scripts": {
"test-server": "mocha --recursive --exit",
"start-dev": "nf start -p 5000 -j Procfile.dev",
"start": "nf start -p $PORT -j Procfile",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"heroku-postbuild": "react-scripts build",
"start-all": "npm run build && node src/server/server.js",
"start-server-2": "nodemon src/server/server.js",
"start-2": "react-scripts start"
},
"author": "Minh Do",
"license": "MIT",
"dependencies": {
"@hapi/joi": "^15.0.3",
"axios": "^0.18.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"bootstrap": "^4.3.1",
"bootstrap-tagsinput": "^0.7.1",
"classnames": "^2.2.6",
"cors": "^2.8.5",
"express": "^4.16.4",
"foreman": "^3.0.1",
"formik": "^1.5.1",
"gravatar": "^1.8.0",
"jquery": "^3.4.0",
"jsonwebtoken": "^8.4.0",
"jwt-decode": "^2.2.0",
"moment": "^2.24.0",
"mongoose": "^5.4.7",
"morgan": "^1.9.1",
"nodemailer": "^5.1.1",
"papaparse": "^4.6.3",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"query-string": "^6.4.2",
"react": "^16.7.0",
"react-bootstrap": "^1.0.0-beta.9",
"react-bootstrap-table-next": "^2.1.0",
"react-bootstrap-table2-editor": "^1.2.2",
"react-bootstrap-table2-paginator": "^2.0.1",
"react-bootstrap-table2-toolkit": "^1.2.0",
"react-bootstrap-typeahead": "^3.4.5",
"react-csv": "^1.1.1",
"react-datepicker": "^2.7.0",
"react-dom": "^16.7.0",
"react-export-excel": "^0.5.3",
"react-jqueryui-datepicker": "^1.0.3",
"react-notifications-component": "^1.1.1",
"react-phone-number-input": "^2.3.11",
"react-redux": "^6.0.0",
"react-router-dom": "^4.3.1",
"react-scripts": "^2.1.5",
"react-select": "^2.4.3",
"react-stripe-elements": "^3.0.0",
"redux": "^4.0.1",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"socket.io": "^2.2.0",
"socket.io-client": "^2.2.0",
"stripe": "^7.0.0",
"validator": "^10.11.0",
"winston": "^3.2.1"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^5.2.0",
"nodemon": "^1.19.1",
"supertest": "^3.4.2"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"heroku-run-build-script": true
}