-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
108 lines (108 loc) · 3.7 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "a-tree",
"version": "1.1.1",
"description": "A-Tree - Github review helper (Code browsing & Pull requests reviewing)",
"homepage": "https://github.com/shinenic/a-tree",
"repository": "https://github.com/shinenic/a-tree",
"private": true,
"license": "MIT",
"dependencies": {
"@material-ui/core": "^4.12.1",
"@material-ui/lab": "^4.0.0-alpha.60",
"@octokit/graphql": "^4.8.0",
"@octokit/request": "^5.6.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^12.8.3",
"crypto-js": "^4.1.1",
"dayjs": "^1.10.7",
"github-reserved-names": "^2.0.4",
"jquery": "^3.6.0",
"lodash": "4.17.16",
"match-sorter": "^6.3.0",
"parse-link-header": "^1.0.1",
"prop-types": "^15.7.2",
"re-resizable": "^6.9.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hot-loader": "^4.13.0",
"react-icons": "^4.3.1",
"react-query": "^3.19.1",
"react-spring": "^9.2.4",
"react-virtualized-auto-sizer": "^1.0.6",
"react-vtree": "^3.0.0-beta.3",
"react-window": "^1.8.6",
"tinycolor2": "^1.4.2",
"zustand": "^3.5.10"
},
"scripts": {
"make:jqueryPjax": "node ./script/jqueryPjax.js",
"make:manifest": "node ./script/manifest.js",
"make:fileIcons": "node ./script/fileIcons",
"make:all": "yarn make:manifest && yarn make:fileIcons && yarn make:jqueryPjax",
"build:dev": "yarn make:all && cross-env BUILD_PATH=dist webpack --config=webpack/webpack.common.js --mode=development",
"build:prod": "yarn make:all && cross-env BUILD_PATH=build webpack --config=webpack/webpack.common.js --mode=production",
"dev": "cross-env LOCAL_MODE=false yarn build:dev --watch",
"analyzer": "cross-env LOCAL_MODE=false ANALYZER=true yarn build:dev",
"analyzer:prod": "cross-env LOCAL_MODE=false ANALYZER=true yarn build:prod",
"dev:local": "cross-env LOCAL_MODE=true PORT=5566 API_PORT=5567 webpack-dev-server --config=webpack/webpack.local.js",
"mockoon:start": "mockoon-cli start --data ./mockAPI/mockoon.json -i 0",
"mockoon:stop": "mockoon-cli stop",
"test:ci": "yarn build:prod && cross-env BUILD_PATH=build jest",
"test": "jest"
},
"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": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"@hot-loader/react-dom": "^17.0.1",
"@pmmmwh/react-refresh-webpack-plugin": "^0.4.3",
"@types/chrome": "^0.0.146",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-plugin-lodash": "^3.3.4",
"copy-webpack-plugin": "^9.0.1",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.25.2",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"file-icons-js": "websemantics/file-icons-js",
"html-webpack-plugin": "^5.3.2",
"jquery-pjax": "^2.0.1",
"jest": "^27.4.3",
"jest-puppeteer": "^6.0.2",
"lodash-webpack-plugin": "^0.11.6",
"prettier-eslint": "^13.0.0",
"puppeteer": "^13.0.0",
"react-refresh": "^0.10.0",
"web-vitals": "^2.1.0",
"webpack": "^5.44.0",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^4.1.1",
"zip-webpack-plugin": "^4.0.1"
}
}