-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
76 lines (76 loc) · 2.58 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
{
"name": "yscope-log-viewer",
"version": "0.1.0",
"description": "A tool tailored for viewing logs, including log formats designed by YScope.",
"main": "src/index.tsx",
"scripts": {
"analyze:size": "webpack --config webpack.prod.js --profile --json=bundle-stats.json && webpack-bundle-analyzer bundle-stats.json dist/",
"build": "webpack --config webpack.prod.js",
"lint": "npm run lint:check",
"lint:check": "npm-run-all --sequential --continue-on-error lint:check:*",
"lint:check:css": "stylelint src/**/*.css",
"lint:check:js": "eslint . --max-warnings 0",
"lint:fix": "npm-run-all --parallel --continue-on-error \"lint:check:* -- --fix\"",
"start": "webpack serve --open --config webpack.dev.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/y-scope/yscope-log-viewer.git"
},
"author": "YScope Inc. <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/y-scope/yscope-log-viewer/issues"
},
"homepage": "https://github.com/y-scope/yscope-log-viewer#readme",
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^6.4.1",
"@mui/joy": "^5.0.0-beta.51",
"axios": "^1.7.9",
"clp-ffi-js": "^0.3.4",
"dayjs": "^1.11.13",
"monaco-editor": "0.50.0",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.26.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.15",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.7",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"babel-loader": "^9.2.1",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"eslint-config-yscope": "latest",
"html-webpack-plugin": "^5.6.3",
"globals": "^15.14.0",
"jest": "^29.7.0",
"mini-css-extract-plugin": "^2.9.2",
"jest-environment-jsdom": "^29.7.0",
"monaco-editor-webpack-plugin": "^7.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.4.2",
"react-refresh": "^0.16.0",
"style-loader": "^4.0.0",
"stylelint": "^16.13.2",
"stylelint-config-clean-order": "^6.1.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-prettier": "^5.0.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "5.7.3",
"webpack": "^5.97.1",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.0",
"webpack-merge": "^6.0.1"
}
}