generated from chibat/chrome-extension-typescript-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.65 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
{
"name": "react-ts-starter-for-extensions",
"version": "1.0.0",
"description": "Cross-platform React TS starter for browser extensions",
"type": "module",
"author": "[email protected]",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mcanvar/react-ts-starter-for-extensions.git"
},
"scripts": {
"watch": "npm run watch:f",
"watch:f": "webpack --config webpack/webpack.dev.js --watch",
"watch:c": "webpack --config webpack/webpack.dev.js --watch --env CHROMIUM",
"build": "npm run build:f",
"build:f": "webpack --config webpack/webpack.prod.js",
"build:c": "webpack --config webpack/webpack.prod.js --env CHROMIUM",
"clean": "rimraf dist",
"test": "npx jest",
"prepare": "husky install"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown \"src/**/*.{ts,tsx}\""
},
"devDependencies": {
"@babel/core": "^7.18.13",
"@babel/preset-env": "^7.18.10",
"@types/chrome": "0.0.158",
"@types/jest": "^27.0.2",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/webextension-polyfill": "^0.9.1",
"autoprefixer": "^10.4.8",
"babel-loader": "^8.2.5",
"copy-webpack-plugin": "^9.0.1",
"glob": "^7.1.6",
"husky": "^8.0.1",
"jest": "^27.2.1",
"lint-staged": "^13.0.3",
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"rimraf": "^3.0.2 ",
"ts-jest": "^27.0.5",
"ts-loader": "^8.0.0",
"typescript": "^4.4.3",
"web-ext-plugin": "^2.8.1",
"webextension-polyfill": "^0.10.0",
"webpack": "^5.61.0",
"webpack-cli": "^4.0.0",
"webpack-merge": "^5.0.0"
}
}