-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 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
{
"name": "mor-bargig-pgf",
"version": "0.1.0",
"private": true,
"dependencies": {
"axios": "^0.21.0",
"babel-cli": "^6.26.0",
"babel-node": "0.0.1-security",
"babel-preset-env": "^1.7.0",
"concurrently": "^5.3.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"firebase": "^8.0.2",
"heroku": "^7.47.9",
"mongoose": "^5.10.14",
"nodemon": "^2.0.7",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-scripts": "^4.0.0"
},
"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 origin master",
"herokuPush": "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"
]
}
}