-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (54 loc) · 1.29 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
52
53
54
55
{
"name": "weather",
"version": "0.1.3",
"private": true,
"contributors": ["Tommy Gonzalez"],
"proxy": "http://localhost:5000",
"homepage": "http://localhost:5000",
"engines": {
"node": "10.x",
"npm": "6.x"
},
"dependencies": {
"@babel/runtime": "^7.5.5",
"dotenv": "^8.0.0",
"fastify": "^2.6.0",
"fastify-static": "^2.5.0",
"foundation-sites": "^6.5.3",
"moment": "^2.24.0",
"node-fetch": "^2.6.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-foundation": "^0.9.6",
"react-moment": "^0.9.2",
"react-scripts": "3.0.1",
"react-skycons": "^0.7.0",
"zipcodes": "^8.0.0",
"pino-pretty": "^3.2.0"
},
"scripts": {
"start": "node server.js",
"react-start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"server": "node server.js",
"server-pretty": "node server.js | ./node_modules/.bin/pino-pretty",
"heroku-postbuild": "npm run build"
},
"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"
]
}
}