-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.22 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
{
"name": "city_guess_app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start_local": "webpack-dev-server --env.API_URL=http://127.0.0.1:5000/ --mode development --open --hot",
"build": "webpack --env.API_URL=https://city-guess-api-nick-korres.vercel.app/ --mode production ",
"start": "webpack-dev-server --env.API_URL=https://city-guess-api-nick-korres.vercel.app/ --mode development --open --hot"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/runtime": "^7.9.2",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"bundle-loader": "^0.5.6",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.1.2"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"babel-loader": "^8.1.0",
"css-loader": "^3.4.2",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.0.1",
"react-icons": "^3.9.0",
"style-loader": "^1.1.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
}
}