forked from githru/githru-vscode-ext
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.34 KB
/
Copy pathpackage.json
File metadata and controls
118 lines (118 loc) · 3.34 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
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "@githru-vscode-ext/view",
"version": "0.8.0",
"description": "view module for githru",
"engines": {
"node": ">=16",
"npm": ">=8"
},
"scripts": {
"start": "webpack serve --config webpack.dev.config.js",
"build": "webpack --config webpack.prod.config.js",
"build:dev": "webpack --config webpack.dev.config.js",
"test": "jest",
"test:e2e": "playwright test"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/githru/githru-vscode-ext.git"
},
"author": "githru team",
"license": "MIT",
"bugs": {
"url": "https://github.com/githru/githru-vscode-ext/issues"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/plugin-transform-react-constant-elements": "^7.22.5",
"@babel/preset-env": "^7.22.15",
"@babel/preset-react": "^7.22.15",
"@babel/preset-typescript": "^7.22.15",
"@babel/runtime": "^7.18.9",
"@playwright/test": "^1.37.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
"@svgr/webpack": "^8.0.1",
"@trysound/sax": "^0.2.0",
"@types/d3": "^7.4.0",
"@types/jest": "^28.1.7",
"@types/md5": "^2.3.2",
"@types/node": "^18.7.6",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@types/vscode-webview": "^1.57.0",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.7.1",
"eslint": "^8.22.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.4.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"fork-ts-checker-webpack-plugin": "^7.2.13",
"html-webpack-plugin": "^5.5.0",
"prettier": "^3.0.1",
"sass": "^1.77.4",
"sass-loader": "^13.0.2",
"style-loader": "^3.3.1",
"ts-loader": "^9.3.1",
"tslib": "^2.4.0",
"typescript": "^4.7.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.8.0",
"yarn": "^1.22.19"
},
"dependencies": {
"@emotion/react": "^11.13.0",
"@emotion/styled": "^11.13.0",
"@jest/types": "^29.6.3",
"@mui/icons-material": "^6.5.0",
"@mui/material": "^6.5.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^13.5.0",
"@types/react-virtualized": "^9.21.30",
"classnames": "^2.3.2",
"d3": "^7.6.1",
"dayjs": "^1.11.5",
"immer": "^10.1.3",
"inversify": "^7.10.0",
"jest": "^29.6.4",
"md5": "^2.3.0",
"nanoid": "^4.0.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-spinners": "^0.13.8",
"react-virtualized": "^9.22.5",
"reflect-metadata": "^0.2.2",
"svg-parser": "^2.0.4",
"ts-jest": "^29.1.1",
"zustand": "^4.5.5"
}
}