-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
113 lines (113 loc) · 3.43 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
109
110
111
112
113
{
"name": "deep-reading",
"version": "0.0.1",
"repository": "https://github.com/baotlake/deep-reading.git",
"author": "baotlake <boatlake@gmail.com>",
"license": "SEE LICENSE IN LICENSE.md",
"private": true,
"keywords": [
"next",
"react",
"english",
"pwa"
],
"workspaces": [
"packages/core",
"packages/ui",
"packages/inject",
"packages/website",
"packages/extension"
],
"scripts": {
"build:sub": "cd ./packages/ui && npm run build && cd ../core && npm run build && cd ../inject && npm run build",
"build:website": "npm run build:sub && cd ./packages/website && npm run build",
"build:extension": "cd ./packages/core; yarn build; cd ../ui; yarn build; cd ../inject; yarn build; cd ../extension; yarn build",
"build:windows": "./tasks/build.bat",
"build": "yarn build:website",
"export": "npm run build:website && cd ./packages/website && npm run export",
"dev:website": "cd ./packages/website; next dev",
"dev:extension": "cd ./packages/extension; npm run start",
"dev": "npm run dev:website"
},
"dependencies": {
"@emotion/cache": "^11.10.3",
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@mozilla/readability": "^0.4.2",
"@mui/base": "5.0.0-alpha.104",
"@mui/icons-material": "^5.10.6",
"@mui/lab": "^5.0.0-alpha.101",
"@mui/material": "^5.10.10",
"@mui/system": "^5.10.7",
"@reduxjs/toolkit": "^1.8.0",
"@zxing/browser": "^0.0.10",
"@zxing/library": "^0.18.6",
"bowser": "^2.11.0",
"classnames": "^2.3.1",
"cross-env": "^7.0.3",
"esbuild": "^0.14.10",
"jquery": "^3.5.1",
"lodash": "^4.17.21",
"preact": "^10.10.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-jss": "^10.7.1",
"react-redux": "^7.2.6",
"redux": "^4.1.2",
"sass": "^1.35.2"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-react": "^7.14.5",
"@rollup/plugin-alias": "^3.1.9",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-replace": "^3.0.1",
"@rollup/plugin-typescript": "^8.3.0",
"@svgr/webpack": "^6.2.1",
"@types/node": "^18.11.0",
"@types/react": "17.0.45",
"@types/react-dom": "^17.0.9",
"@types/styled-components": "^5.1.24",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"acorn-jsx": "^5.3.2",
"autoprefixer": "^10.4.7",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^7.0.0",
"css-loader": "^3.4.0",
"dotenv": "^10.0.0",
"eslint": "^7.27.0",
"eslint-plugin-react": "^7.23.2",
"glob-parent": "^5.1.2",
"mark.js": "^8.11.1",
"next": "^12.3.0",
"pdfjs-dist": "^2.6.347",
"postcss": "^8.4.14",
"postcss-loader": "^7.0.0",
"raw-loader": "^4.0.2",
"rollup": "^2.67.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"rollup-plugin-visualizer": "^5.6.0",
"sass-loader": "^10.1.0",
"style-loader": "^3.0.0",
"tailwindcss": "^3.0.24",
"terser-webpack-plugin": "^5.1.4",
"ts-loader": "^9.2.3",
"tslib": "^2.4.0",
"typescript": "^4.1.5",
"url-loader": "^4.1.1",
"webpack": "^5.40.0",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.7.2",
"worker-loader": "^3.0.8"
},
"resolutions": {
"@types/react": "<18.0.0",
"@types/react-dom": "<18.0.0"
},
"engines": {
"node": ">=14.0.0"
}
}