-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.22 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
{
"name": "github-client",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"build:dev": "webpack --env mode=development",
"build:prod": "webpack --env mode=production",
"start": "webpack serve --env mode=development",
"deploy": "gh-pages -d build",
"lint": "eslint \"./src/**/*.{js,jsx,ts,tsx}\"",
"lint:fix": "eslint \"./src/**/*.{js,jsx,ts,tsx}\" --fix"
},
"dependencies": {
"axios": "^1.8.4",
"bcryptjs": "^3.0.2",
"buffer": "^6.0.3",
"classnames": "^2.5.1",
"firebase": "^11.6.0",
"fork-ts-checker-webpack-plugin": "^9.1.0",
"mobx": "^6.13.7",
"mobx-react-lite": "^4.1.0",
"qs": "^6.14.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^10.1.0",
"react-router": "^7.4.1",
"react-router-dom": "^7.5.0",
"react-toastify": "^11.0.5",
"rehype-sanitize": "^6.0.0",
"remark-gfm": "^4.0.1",
"typescript-cookie": "^1.0.6"
},
"devDependencies": {
"@babel/core": "^7.27.1",
"@babel/preset-env": "^7.27.2",
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@eslint/js": "^9.21.0",
"@types/node": "^22.13.13",
"@types/qs": "^6.9.18",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@types/webpack": "^5.28.5",
"@types/webpack-dev-server": "^4.7.2",
"babel-loader": "^10.0.0",
"css-loader": "^7.1.2",
"eslint": "^9.21.0",
"eslint-config-prettier": "^10.1.1",
"eslint-import-resolver-typescript": "^4.2.5",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.5",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.19",
"gh-pages": "^6.3.0",
"globals": "^15.15.0",
"html-webpack-plugin": "^5.6.3",
"mini-css-extract-plugin": "^2.9.2",
"prettier": "^3.5.3",
"sass": "^1.86.0",
"sass-loader": "^16.0.5",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.2",
"ts-node": "^10.9.2",
"typescript": "~5.7.2",
"typescript-eslint": "^8.24.1",
"url-loader": "^4.1.1",
"webpack": "^5.99.8",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.1"
},
"homepage": "https://vellun.github.io/github-client/"
}