-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.83 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
{
"name": "chrome-extension-with-react-and-typescript-starter-pack",
"version": "1.0.0",
"description": "Chrome Extension with React and Typescript Starter Pack",
"homepage": "https://github.com/thmsgbrt/Chrome-Extension-with-React-and-Typescript-Starter-Pack#readme",
"scripts": {
"clean": "rm -rf dist && cpy manifest.json dist && cpy src/assets/* dist/assets",
"prebuild": "npm run clean",
"build:contentscript-background": "NODE_ENV=production webpack --config webpack.config.js",
"build:popup": "INLINE_RUNTIME_CHUNK=false npm run build --prefix src/popup && cd src/popup/build && cpy * /static/* ../../../dist/popup --parents",
"build": "npm-run-all build:*",
"prewatch": "npm run clean",
"watch:contentscript-background": "NODE_ENV=development webpack --config webpack.config.js -w",
"watch:popup": "npm run watch:build --prefix src/popup",
"watch": "npm-run-all --parallel watch:*",
"zip": "bestzip extension.zip dist/*"
},
"bugs": {
"url": "https://github.com/thmsgbrt/Chrome-Extension-with-React-and-Typescript-Starter-Pack/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/thmsgbrt/Chrome-Extension-with-React-and-Typescript-Starter-Pack"
},
"keywords": [
"chrome",
"extension",
"typescript",
"react"
],
"author": "Guibert Thomas",
"license": "ISC",
"devDependencies": {
"@types/chrome": "0.0.115",
"@types/node": "14.0.13",
"awesome-typescript-loader": "^5.2.1",
"bestzip": "2.1.7",
"cpy-cli": "2.0.0",
"cra-build-watch": "3.0.0",
"css-loader": "3.2.1",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "4.13.0",
"npm-run-all": "^4.1.5",
"sass-loader": "8.0.0",
"ts-node": "8.5.4",
"tslint": "5.20.1",
"typescript": "^3.9.5",
"webpack": "4.41.2",
"webpack-cli": "3.3.10"
}
}