-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
72 lines (72 loc) · 2.04 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
{
"name": "retitle",
"version": "2.0.0",
"description": "Change tab titles easily!",
"author": "Lazyuki",
"license": "MIT",
"private": true,
"bugs": {
"url": "https://github.com/Lazyuki/ReTitle/issues"
},
"homepage": "https://github.com/Lazyuki/ReTitle#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Lazyuki/ReTitle.git"
},
"scripts": {
"lint": "eslint src",
"preinstall": "npx npm-force-resolutions",
"dev": "npm-run-all --parallel dev:chrome dev:firefox",
"dev:chrome": "webpack --watch --env.BROWSER=chrome ",
"dev:firefox": "webpack --watch --env.BROWSER=firefox ",
"clean": "rimraf dist*",
"prebuild": "npm run clean",
"build": "npm-run-all --parallel build:chrome build:firefox",
"build:chrome": "webpack --env.NODE_ENV=production --env.BROWSER=chrome",
"build:firefox": "webpack --env.NODE_ENV=production --env.BROWSER=firefox"
},
"dependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"clsx": "^1.1.1",
"preact": "10.4.7",
"react-redux": "^7.2.1",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@types/chrome": "^0.0.133",
"@types/firefox-webext-browser": "^82.0.0",
"@types/react-redux": "^7.1.9",
"babel-loader": "^8.1.0",
"copy-webpack-plugin": "^5.1.2",
"eslint": "^7.11.0",
"husky": "^4.3.0",
"npm-run-all": "^4.1.5",
"preact-svg-loader": "^0.2.1",
"prettier": "^2.1.2",
"pretty-quick": "^2.0.2",
"rimraf": "^3.0.2",
"ts-loader": "^7.0.5",
"typescript": "^3.9.7",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-extension-manifest-plugin": "^0.5.0",
"zip-webpack-plugin": "^3.0.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"prettier": {
"singleQuote": true
},
"resolutions": {
"acorn": "8.0.1"
}
}