-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.71 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.71 KB
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
{
"name": "iex",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "4.1.2",
"@material-ui/icons": "^4.2.0",
"@material-ui/styles": "4.1.2",
"apollo-boost": "^0.3.1",
"apollo-cache-inmemory": "^1.5.1",
"apollo-client": "^2.5.1",
"axios": "^0.21.1",
"d3-format": "^1.3.2",
"d3-scale": "^2.1.2",
"d3-time-format": "^2.1.3",
"dotenv": "^8.0.0",
"graphql": "^14.1.1",
"notistack": "^0.8.9",
"prop-types": "^15.6.2",
"react": "^16.8.6",
"react-apollo": "^2.5.1",
"react-bootstrap": "^0.32.4",
"react-dom": "^16.8.6",
"react-number-format": "^4.0.8",
"react-router-dom": "^4.3.1",
"react-scripts": "3.0.1",
"react-stockcharts": "^0.7.8",
"shortid": "^2.2.14",
"socket.io-client": "^2.2.0",
"typeface-roboto": "^0.0.54"
},
"devDependencies": {
"@types/graphql": "^14.0.7",
"@types/node": "^11.9.5",
"@types/react": "^16.8.5",
"@types/react-dom": "^16.8.2",
"@types/react-router-dom": "^4.3.1",
"apollo": "^2.5.3",
"typescript": "^3.3.3333"
},
"scripts": {
"start": "PORT=3012 react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"schema:download": "apollo schema:download --endpoint=http://localhost:4000/graphql",
"codegen:generate": "apollo codegen:generate --includes='./src/**/*.tsx' --localSchemaFile=./schema.json --outputFlat --target=typescript ./src/schemaTypes.ts",
"gen:types": "npm run schema:download && npm run codegen:generate"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}