forked from Harry-Chen/Learn-Helper
-
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.36 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.36 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": "learn-helper",
"version": "4.6.0",
"author": "Harry Chen",
"license": "MIT",
"private": true,
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/Harry-Chen/Learn-Helper"
},
"scripts": {
"dev": "vite",
"build:dev": "NODE_ENV=development vite build",
"build:chrome": "vite build",
"build:firefox": "BROWSER=firefox vite build",
"serve:chrome": "web-ext run -t chromium --start-url \"https://example.com\" --source-dir ./dist/",
"serve:firefox": "web-ext run --start-url \"about:debugging#/runtime/this-firefox\" --source-dir ./dist/",
"lint": "eslint .",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.tsx\" \"src/**/*.js\" \"./*.js\""
},
"devDependencies": {
"@mdx-js/rollup": "^2.3.0",
"@samrum/vite-plugin-web-extension": "^5.0.0",
"@types/lodash": "^4.14.195",
"@types/node": "^18.11.11",
"@types/randomstring": "^1.1.8",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@types/redux-logger": "^3.0.9",
"@types/webextension-polyfill": "^0.10.1",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitejs/plugin-react": "^4.0.3",
"eslint": "^8.45.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"prettier": "^2.8.0",
"randomstring": "^1.3.0",
"remark-mdx-images": "^2.0.0",
"remark-unwrap-images": "^3.0.1",
"rollup-plugin-visualizer": "^5.9.2",
"terser": "^5.19.4",
"typescript": "^5.1.6",
"vite": "^4.4.4",
"vite-plugin-zip-pack": "^1.0.6",
"web-ext": "^7.6.2"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@fortawesome/fontawesome-svg-core": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@mui/material": "^5.14.0",
"@reduxjs/toolkit": "^1.9.5",
"classnames": "^2.3.2",
"compare-versions": "^6.0.0",
"fake-parse5": "^0.0.1",
"material-ui-popup-state": "^5.0.9",
"notistack": "^3.0.1",
"proxy-memoize": "^2.0.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.11",
"react-iframe": "^1.8.5",
"react-redux": "^8.1.2",
"redux-logger": "^3.0.6",
"thu-learn-lib": "^3.1.0",
"webextension-polyfill": "^0.10.0"
},
"resolutions": {}
}