-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.56 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
{
"name": "web-extension-starter",
"version": "1.0.0",
"author": "Anders Nylund <[email protected]>",
"description": "A simple TypeScript React starter for creating web extensions for Chrome and Firefox",
"license": "MIT",
"private": true,
"scripts": {
"build": "webpack --config webpack.prod.js",
"chrome": "yarn extension --chromium-profile \"./.chrome\" --target chromium",
"dev": "webpack --config webpack.dev.js",
"extension": "web-ext run --source-dir ./dist/ --keep-profile-changes --start-url http://localhost:3000",
"firefox": "yarn extension --firefox-profile \"./.firefox\"",
"test": "jest --coverage",
"watch": "webpack -w --config webpack.dev.js",
"lint": "eslint src"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.3",
"@types/jest": "^26.0.20",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.2",
"@types/styled-components": "^5.1.9",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.17.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"jest": "^26.6.3",
"ts-jest": "^26.5.4",
"ts-loader": "^8.0.17",
"typescript": "^4.2.3",
"web-ext": "^5.4.1",
"webpack": "^5.27.1",
"webpack-cli": "^4.5.0",
"webpack-merge": "^5.7.3"
},
"dependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1",
"styled-components": "^5.2.1",
"webextension-polyfill-ts": "^0.25.0"
}
}