-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
45 lines (45 loc) · 1.32 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
{
"name": "react-typescript-web-extension-starter",
"version": "1.0.0",
"description": "A web extension starter kit built with React and TypeScript",
"license": "MIT",
"scripts": {
"dev": "webpack --config webpack.development.js --watch --progress",
"lint": "eslint --fix -c ./.eslintrc.js \"src/**/*.ts*\"",
"prebuild": "npm run lint && rimraf dist",
"build": "webpack --config webpack.production.js",
"prettify": "prettier --write \"src/**/*.ts*\""
},
"keywords": [
"extension",
"react",
"typescript",
"boilerplate"
],
"author": "slashbit",
"devDependencies": {
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"copy-webpack-plugin": "^7.0.0",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"html-webpack-plugin": "^4.5.1",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-loader": "^8.0.14",
"typescript": "^4.1.3",
"webextension-polyfill-ts": "^0.22.0",
"webpack": "^5.11.1",
"webpack-cli": "^4.3.1",
"webpack-dev-server": "^3.11.1",
"webpack-merge": "^5.7.3"
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}