-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.2 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.2 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "metamorph",
"version": "0.1.0",
"private": true,
"dependencies": {
"@bokuweb/zstd-wasm": "^0.0.20",
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@monaco-editor/react": "^4.4.6",
"@mui/icons-material": "^5.11.0",
"@mui/material": "^5.10.10",
"@protobuf-ts/plugin": "^2.8.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"@types/node": "^16.11.68",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"fflate": "^0.7.4",
"jq-web": "^0.5.1",
"json-stable-stringify": "^1.0.2",
"monaco-editor": "^0.34.1",
"node-polyfill-webpack-plugin": "^2.0.1",
"path-browserify": "^1.0.1",
"react": "^18.2.0",
"react-app-rewired": "^2.2.1",
"react-dom": "^18.2.0",
"react-router-dom": "^6.4.3",
"react-scripts": "5.0.1",
"stream-browserify": "^3.0.0",
"typescript": "^4.8.4",
"web-vitals": "^2.1.4",
"xml-js": "^1.6.11",
"yaml": "^2.1.3"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test:unit": "react-app-rewired test",
"test:lint": "eslint --ext .ts --ext .tsx .",
"test:lint:fix": "npm run lint -- --fix",
"test": "npm run test:lint && npm run test:unit",
"codegen": "npx protoc --ts_out src/components/AppConfig --proto_path src/components/AppConfig/protos src/components/AppConfig/protos/model.proto"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/json-stable-stringify": "^1.0.34",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1"
}
}