-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
executable file
·96 lines (96 loc) · 3.33 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
{
"name": "browser-extension-boilerplate",
"version": "0.0.0",
"description": "",
"homepage": "https://fxnoob.github.io/chrome-extension-boilerplate",
"scripts": {
"build:tailwind": "tailwindcss build -i src/styles/style.css -o dist/style.css",
"watch:tailwind": "chokidar 'src/styles/*.css' -c 'yarn build:tailwind'",
"prestart": "yarn build:tailwind",
"prebuild": "yarn rm && yarn build:tailwind",
"rm": "rm -rf dist/",
"rm:extZip": "rm ext.zip",
"dev:chromium": "concurrently --kill-others \"npm run watch:tailwind\" \"npm run webpack:chromium:dev\"",
"webpack:chromium:dev": "webpack --watch --progress --config chromium.webpack.js --mode=development",
"dev:firefox": "yarn build:tailwind && webpack --watch --progress --config firefox.webpack.js --mode=development",
"build:chromium": "webpack --progress --config chromium.webpack.js --mode=production && yarn build:tailwind",
"build:firefox": "yarn build:tailwind && webpack --progress --config firefox.webpack.js --mode=production",
"jsdoc": "jsdoc src -r",
"deploy_jsdoc": "yarn jsdoc && gh-pages -d out",
"zip": "zip -r dist.zip dist/*",
"test": "yarn build:chromium && yarn build:firefox",
"generate:locale": "node scripts/generate-locale",
"delete:locale": "node scripts/delete-locale"
},
"husky": {
"hooks": {
"pre-commit": "npm run test && npm run rm"
}
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "7.19.6",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-syntax-class-properties": "7.12.13",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-transform-react-jsx": "7.19.0",
"@babel/plugin-transform-runtime": "7.19.6",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "7.19.4",
"@babel/preset-react": "7.18.6",
"@babel/runtime": "7.20.0",
"@reorx/webpack-ext-reloader": "^1.3.0",
"arg": "5.0.2",
"babel-eslint": "10.1.0",
"babel-loader": "^8.2.2",
"babel-minify": "^0.5.1",
"brotli-webpack-plugin": "1.1.0",
"chai": "4.3.6",
"chalk": "4.1.2",
"chokidar": "^3.5.3",
"chokidar-cli": "2.1.0",
"clean-webpack-plugin": "^4.0.0",
"concurrently": "^8.2.0",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.2.0",
"dotenv": "8.6.0",
"esbuild-loader": "2.20.0",
"eslint": "7.32.0",
"eslint-loader": "4.0.2",
"eslint-plugin-react": "7.31.10",
"eslint-watch": "7.0.0",
"esm": "3.2.25",
"exec-sh": "0.3.6",
"execa": "6.1.0",
"file-loader": "^6.2.0",
"fs-extra": "^10.0.0",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.3.2",
"husky": "3.1.0",
"inquirer": "7.3.3",
"jsdoc": "3.6.11",
"jsonfile": "6.1.0",
"node-google-translate-skidz": "1.1.2",
"prettier": "1.18.2",
"pretty-quick": "2.0.2",
"sass": "^1.37.5",
"sass-loader": "^12.1.0",
"source-map-loader": "^3.0.0",
"style-loader": "^3.2.1",
"tailwindcss": "^3.2.4",
"webpack": "^5.48.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/material": "^5.10.13",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-frame-component": "^5.2.3",
"source-map-loader": "^4.0.1"
}
}