-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.35 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
{
"name": "mpcsl-frontend",
"version": "1.0.0",
"private": true,
"dependencies": {
"@ant-design/icons": "^4.3.0",
"@blueprintjs/core": "^3.24.0",
"@blueprintjs/icons": "^3.14.0",
"antd": "^4.8.5",
"axios": "^0.19.2",
"d3": "^5.15.0",
"moment": "^2.24.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-lazylog": "^4.5.1",
"react-mosaic-component": "3.2.0",
"react-router-dom": "^5.1.2",
"react-scripts": "3.4.0",
"react-sizeme": "^2.6.12",
"react-test-renderer": "^16.12.0",
"react-virtualized-select": "^3.1.3",
"react-vis": "^1.11.7",
"rxjs": "^6.5.4",
"socket.io-client": "^3.0.4"
},
"devDependencies": {
"@types/d3": "^5.7.2",
"@types/jest": "25.1.3",
"@types/node": "13.7.6",
"@types/react": "16.9.23",
"@types/react-dom": "16.9.5",
"@types/react-lazylog": "^4.4.0",
"@types/react-router-dom": "^5.1.3",
"@types/react-test-renderer": "^16.9.2",
"@types/react-virtualized-select": "^3.0.8",
"@types/socket.io-client": "^1.4.32",
"@typescript-eslint/eslint-plugin": "^2.21.0",
"@typescript-eslint/parser": "^2.21.0",
"eslint": "6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react-hooks": "^2.4.0",
"http-proxy-middleware": "^1.0.0",
"husky": "^4.2.3",
"jest-junit": "^10.0.0",
"lint-staged": "^10.0.8",
"prettier": "^1.19.1",
"sass": "^1.29.0",
"typescript": "3.8.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint \"./src/**/*.{ts,tsx}\"",
"prettier": "prettier \"**/*.{json,md,scss,yaml,yml}\""
},
"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"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix"
],
"*.{json,md,scss,yaml,yml}": [
"prettier --write"
]
},
"jest-junit": {
"outputDirectory": "./reports",
"outputName": "jest.xml"
}
}