-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.69 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
{
"name": "web-extension-starter",
"version": "0.0.1",
"description": "browser extension starter code to help you quickly get up to speed with building your own extension.",
"scripts": {
"build": "webpack --config webpack.prod.js",
"dev": "webpack -w --config webpack.dev.js",
"lint": "eslint --fix -c ./.eslintrc.js \"src/**/*.ts*\"",
"prettify": "prettier --write \"src/**/*.ts*\""
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@types/chrome": "^0.0.124",
"@types/node": "^14.11.8",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@types/uuid": "^9.0.8",
"@types/webextension-polyfill": "^0.9.0",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"autoprefixer": "^10.4.1",
"babel-core": "^6.26.3",
"babel-loader": "^8.1.0",
"copy-webpack-plugin": "^12.0.2",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.4",
"html-webpack-plugin": "^5.6.0",
"prettier": "^2.1.2",
"ts-loader": "^8.0.5",
"typescript": "^5.6.2",
"webpack": "^5.76.0",
"webpack-cli": "^4.9.1",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"dotenv-webpack": "^8.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.22.0",
"styled-components": "^6.1.8",
"uuid": "^9.0.1",
"webextension-polyfill": "^0.9.0"
}
}