-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
85 lines (85 loc) · 2.63 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
{
"scripts": {
"start": "npm run dev",
"precommit": "lint-staged",
"dev": "MODE=development webpack -w --mode=development",
"build": "npm run clean && MODE=production webpack --mode=production && npm run pack",
"lint": "eslint src --ext=ts,tsx",
"clean": "rimraf chrome",
"pack": "cd chrome && bestzip ../GithubX.zip *"
},
"lint-staged": {
"src/**/*.{ts,tsx}": "eslint"
},
"devDependencies": {
"@octokit/types": "^6.34.0",
"@types/chrome": "^0.0.179",
"@types/qs": "^6.9.7",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.13",
"@types/react-window": "^1.8.2",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-runtime": "^6.26.0",
"bestzip": "^2.1.5",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^1.0.0",
"eslint": "^8.10.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-alloy": "^4.5.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.29.3",
"eslint-plugin-react-hooks": "^4.1.2",
"html-webpack-plugin": "^5.5.0",
"husky": "^0.14.3",
"lint-staged": "^7.2.0",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"style-loader": "^0.21.0",
"ts-loader": "^9.2.7",
"typescript": "^4.6.2",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"yaml-locales-webpack-plugin": "^1.1.5"
},
"dependencies": {
"@emotion/react": "^11.8.1",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.6.0",
"@mui/lab": "^5.0.0-alpha.76",
"@mui/material": "^5.6.0",
"@mui/styles": "^5.6.0",
"@reduxjs/toolkit": "^1.8.0",
"@vespaiach/axios-fetch-adapter": "^0.3.0",
"ahooks": "^3.3.10",
"axios": "^0.27.2",
"classnames": "^2.3.1",
"dexie": "^3.2.1",
"dexie-relationships": "^1.2.11",
"leancloud-storage": "^4.6.1",
"octokit": "^1.7.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-markdown": "^8.0.0",
"react-redux": "^7.2.6",
"react-router-dom": "^6.3.0",
"react-treebeard": "^3.2.4",
"react-use": "^17.2.1",
"react-window": "^1.8.6",
"redux": "^4.1.2",
"rehype-sanitize": "^5.0.1",
"remark-gfm": "^3.0.1",
"use-chrome-storage": "^1.0.7"
}
}