forked from CIMAC-CIDC/cidc-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.4 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "front-end-cidc",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^4.9.10",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"@material-ui/styles": "^4.9.0",
"@material-ui/types": "^4.1.1",
"@types/async-retry": "^1.4.2",
"@types/auth0-js": "^9.12.3",
"@types/axios": "^0.14.0",
"@types/axios-mock-adapter": "^1.10.0",
"@types/chroma-js": "^1.4.3",
"@types/dotenv": "^6.1.1",
"@types/filesize": "^3.6.0",
"@types/jsonwebtoken": "^8.3.7",
"@types/lodash": "^4.14.149",
"@types/moment": "^2.13.0",
"@types/nanoid": "^2.1.0",
"@types/query-string": "^6.2.0",
"@types/react-copy-to-clipboard": "^4.3.0",
"@types/react-router-dom": "^5.1.3",
"@types/request": "^2.48.4",
"@types/request-promise-native": "^1.0.17",
"async-retry": "^1.3.1",
"auth0-js": "^9.13.2",
"autobind-decorator": "^2.4.0",
"axios": "^0.21.4",
"axios-mock-adapter": "^1.17.0",
"chroma-js": "^2.1.0",
"dot-prop": "^5.3.0",
"dotenv": "^8.2.0",
"enhanced-resolve": "^4.1.1",
"filesize": "^5.0.3",
"github-markdown-css": "^3.0.1",
"handlebars": "^4.7.7",
"husky": "^3.1.0",
"jsonwebtoken": "^8.5.1",
"lint-staged": "^9.5.0",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"nanoid": "^2.1.11",
"plotly.js": "^1.52.2",
"prettier": "^1.19.1",
"query-string": "^6.10.1",
"react": "^16.12.0",
"react-copy-to-clipboard": "^5.0.2",
"react-datasheet": "^1.4.3",
"react-dom": "^16.12.0",
"react-frame-component": "^4.1.1",
"react-hook-form": "^5.6.3",
"react-idle-timer": "^4.2.12",
"react-markdown": "^4.3.1",
"react-plotly.js": "^2.4.0",
"react-router-dom": "^5.1.2",
"react-scripts": "^3.4.3",
"serialize-javascript": "^4.0.0",
"swr": "^0.3.9",
"use-query-params": "^0.4.6"
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier --write",
"git add"
],
"src/**/*.{ts,tsx}": [
"prettier --write",
"tslint",
"git add"
]
},
"scripts": {
"precommit": "lint-staged",
"start": "react-scripts start",
"start-dev": "REACT_APP_NODE_ENV='dev' react-scripts start",
"build": "react-scripts --expose-gc --max-old-space-size=8192 build",
"build-upload": "react-scripts build ; ./google-deploy.sh",
"test": "REACT_APP_NODE_ENV='test' react-scripts test --env=jest-environment-jsdom-sixteen",
"eject": "react-scripts eject",
"lint": "tslint -p tsconfig.json"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.0.2",
"@testing-library/react-hooks": "^3.4.1",
"@types/jest": "^23.3.9",
"@types/node": "^12.12.26",
"@types/react": "^16.9.19",
"@types/react-dom": "^16.9.5",
"jest-environment-jsdom-sixteen": "^1.0.3",
"react-test-renderer": "^16.12.0",
"tslint": "^5.20.1",
"typescript": "^3.8.0"
},
"browserslist": [
">0.2%",
"not ie <= 11",
"not op_mini all"
]
}