-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.43 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
56
57
{
"name": "rss-reader",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^4.7.0",
"@material-ui/icons": "^4.5.1",
"@trendmicro/react-sidenav": "^0.4.5",
"axios": "^0.19.0",
"bootstrap": "^4.3.1",
"cheerio": "^1.0.0-rc.3",
"formik": "^1.5.8",
"jsdom": "^11.12.0",
"mobx": "^5.15.0",
"mobx-react": "^6.1.4",
"netlify-lambda": "^1.6.3",
"node-fetch": "^2.6.0",
"querystring": "^0.2.0",
"react": "^16.11.0",
"react-bootstrap": "^1.0.0-beta.14",
"react-dom": "^16.11.0",
"react-router-dom": "^5.1.2",
"react-scripts": "3.2.0",
"request": "^2.88.0",
"request-promise": "^4.2.5",
"yup": "^0.27.0"
},
"scripts": {
"start": "run-p start:**",
"start:app": "react-scripts start",
"start:app:windows": "react-scripts --openssl-legacy-provider start",
"start:lambda": "netlify-lambda serve src/lambda",
"build": "run-p build:**",
"build:app": "react-scripts build",
"build:lambda": "netlify-lambda build src/lambda",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"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"
]
},
"devDependencies": {
"npm-run-all": "^4.1.5"
}
}