forked from NikhilM98/Vehicle-Identification
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.36 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
{
"name": "vehicle-identification",
"version": "1.0.0",
"private": true,
"description": "Hackathon project. Use camera to identify if a vehicle exists in DB or not.",
"author": "Nikhil Mehra",
"license": "ISC",
"dependencies": {
"axios": "^0.18.0",
"bcrypt": "^3.0.3",
"body-parser": "^1.18.3",
"cookie-parser": "^1.4.3",
"cors": "^2.8.5",
"debug": "^4.1.1",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"moment": "^2.23.0",
"mongoose": "^5.4.18",
"morgan": "^1.9.1",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-router-dom": "^4.3.1",
"react-scripts": "2.1.3",
"serve-favicon": "^2.5.0"
},
"scripts": {
"start": "react-scripts start",
"build": "node scripts/customized-config build",
"serve:prod": "node ./server/bin/www --exec babel-node --presets babel-preset-env",
"serve:dev": "nodemon --ignore './src/' --exec babel-node --presets babel-preset-env ./server/bin/www",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"nodemon": "^1.18.9",
"rewire": "^4.0.1",
"sequelize-cli": "^5.4.0"
}
}