-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
61 lines (61 loc) · 1.6 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
58
59
60
61
{
"name": "stock-app",
"version": "2.5.0",
"private": true,
"dependencies": {
"@date-io/date-fns": "1.x",
"@material-ui/core": "^4.7.2",
"@material-ui/data-grid": "^4.0.0-alpha.8",
"@material-ui/icons": "^4.5.1",
"@material-ui/lab": "^4.0.0-alpha.36",
"@material-ui/pickers": "^3.2.10",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"axios": "^0.21.2",
"d3-dsv": "^2.0.0",
"d3-format": "^2.0.0",
"d3-time-format": "^3.0.0",
"date-fns": "^2.0.0-beta.5",
"dotenv": "^8.2.0",
"lodash": "^4.17.20",
"material-design-icons": "^3.0.1",
"moment": "^2.29.4",
"newrelic": "^7.0.2",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-ga": "^2.7.0",
"react-recaptcha-google": "^1.1.1",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-scripts": "^4.0.0",
"react-stockcharts": "^0.7.8",
"shortid": "^2.2.15"
},
"main": "server.js",
"scripts": {
"start:dev": "react-scripts start",
"build:dev": "react-scripts build",
"start": "cd backend && node server.js",
"build": "cd backend && yarn install",
"build:netlify": "yarn run build:dev",
"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"
]
}
}