-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.44 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": "sms-services",
"version": "0.1.0",
"private": true,
"engines": {
"node": "13.1.0"
},
"dependencies": {
"axios": "^0.19.2",
"babel-cli": "^6.26.0",
"babel-node": "0.0.1-security",
"babel-preset-env": "^1.7.0",
"body-parser": "^1.19.0",
"concurrently": "^5.1.0",
"firebase": "^7.10.0",
"mongoose": "^5.9.3",
"nexmo": "^2.6.0",
"nodemon": "^2.0.2",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-router-dom": "^5.1.2",
"react-scripts": "^3.4.0",
"read-excel-file": "^4.0.5"
},
"scripts": {
"start": "concurrently \"nodemon server.js --exec babel-node --presets babel-preset-env\"",
"dev": "concurrently \"set HTTPS=true&&react-scripts start\" \"nodemon server.js --exec babel-node --presets babel-preset-env\" ",
"heroku": "concurrently \"set HTTPS=true&&react-scripts start\" \"heroku local -p 3030\"",
"noServer": "set HTTPS=true&&react-scripts start",
"server": "node server",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"gitPush": "git add .&&git commit -m \"automatic commit\"&&git push heroku master"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}