forked from GorvGoyl/Notion-Boost-browser-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.28 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
{
"name": "notion-boost-browser-extension",
"version": "1.0.0",
"description": "Notion Boost - add outline and more to notion.so",
"private": false,
"main": "index.js",
"scripts": {
"start:ch": "webpack --watch --mode development --env browser=chrome",
"start:ff": "webpack --watch --mode development --env browser=firefox",
"build:ch": "webpack --mode production --env browser=chrome",
"build:ff": "webpack --mode production --env browser=firefox",
"//mode": "https://webpack.js.org/configuration/mode/",
"postbuild:ch": "node postBuild.js browser=chrome",
"prebuild:ff": "git diff-index --quiet HEAD -- || echo 'WARNING: commit changes before submitting firefox addon'",
"postbuild:ff": "node postBuild.js browser=firefox",
"lint": "eslint ./src/ -c .eslintrc.json --ext .js",
"lint-fix": "eslint ./src/ -c .eslintrc.json --ext .js --fix"
},
"keywords": [
"notion",
"notion-boost"
],
"author": "Gourav Goyal",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/eslint-parser": "^7.23.9",
"@babel/plugin-transform-react-jsx": "^7.23.4",
"@babel/preset-env": "^7.23.9",
"@types/chrome": "^0.0.259",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^6.9.1",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-preact": "^1.3.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-webpack-plugin": "^4.0.1",
"extract-loader": "^5.1.0",
"file-loader": "^6.2.0",
"html-loader": "^5.0.0",
"html-webpack-plugin": "^5.6.0",
"jest": "^29.7.0",
"merge-jsons-webpack-plugin": "^2.0.1",
"mini-css-extract-plugin": "^2.7.7",
"sass": "^1.70.0",
"sass-loader": "^14.0.0",
"style-loader": "^3.3.4",
"svg-inline-loader": "^0.8.2",
"terser-webpack-plugin": "^5.3.10",
"webpack": "^5.90.0",
"webpack-cli": "^5.1.4",
"zip-dir": "^2.0.0",
"zip-webpack-plugin": "^4.0.1"
},
"dependencies": {
"extpay": "^3.0.7",
"lodash": "^4.17.21",
"preact": "^10.19.3",
"preact-router": "^4.1.2"
}
}