-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
72 lines (72 loc) · 1.86 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
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"jsoneditor": "^9.5.6",
"lodash-es": "^4.17.21",
"object-path": "0.11.8",
"react-dropzone": "^11.0.3",
"react-is": "^17.0.1",
"react-router-dom": "^5.2.0",
"react-select": "^3.0.8",
"styled-components": "^5.1.1"
},
"devDependencies": {
"@babel/helper-call-delegate": "^7.10.4",
"@types/jest": "^24.0.18",
"@types/lodash-es": "^4.17.3",
"@types/node": "^12.7.12",
"@types/react": "^16.9.5",
"@types/react-dom": "^16.9.1",
"@types/react-router-dom": "^5.1.6",
"@types/react-select": "^3.0.5",
"@types/styled-components": "^5.1.2",
"eslint": "^7.13.0",
"gts": "^3.0.2",
"http-proxy-middleware": "^0.20.0",
"identity-obj-proxy": "^3.0.0",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-scripts": "^4.0.0",
"typescript": "~3.6.4"
},
"peerDependencies": {
"react": "^16.10.2",
"react-dom": "^16.10.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"deploy-demo": "REACT_APP_IS_DEMO=true react-scripts build && scp -r build/* ubuntu@fe.int.petuum.com:/var/www/html/nlp-viewer",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"jest": {
"transformIgnorePatterns": [
"<rootDir>/node_modules/(?!lodash-es/.*)"
],
"moduleNameMapper": {
"\\.(css|less|scss|sass)$": "identity-obj-proxy"
}
},
"homepage": "."
}