-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 997 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 997 Bytes
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
{
"name": "sample-react-docker",
"version": "0.1.0",
"private": true,
"dependencies": {
"axios": "^0.19.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-scripts": "3.2.0"
},
"scripts": {
"start": "docker-compose up",
"docker:fullstack": "docker-compose up",
"deploy": "heroku container:push web && heroku container:release web",
"react:start": "react-scripts start",
"react:build": "react-scripts build",
"docker:mysql": "docker-compose -f mysql.yml up",
"docker:mongo": "docker-compose -f mongo.yml up",
"docker:express": "docker-compose -f express.yml up",
"docker:react": "docker-compose -f react.yml up",
"docker:build": "docker-compose build",
"docker:clean": "docker rmi $(docker images -qa -f 'dangling=true') --force"
},
"proxy": "http://127.0.0.1:3001/",
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}