-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.12 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
{
"name": "awesome-extension",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "rimraf dist && webpack",
"dev:firefox": "web-ext run --source-dir ./dist/"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.5",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@types/chrome": "^0.0.179",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.13",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"babel-loader": "^8.2.3",
"copy-webpack-plugin": "^10.2.4",
"copyfiles": "^2.4.1",
"eslint": "^8.10.0",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-react": "^7.29.3",
"file-loader": "^6.2.0",
"rimraf": "^3.0.2",
"ts-loader": "^9.2.7",
"typescript": "^4.6.2",
"web-ext": "^6.7.0",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"@emotion/css": "^11.7.1",
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}