-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.33 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "legal-cite-ext",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "rm -rf dist && cross-env NODE_ENV=production webpack",
"test": "jest",
"lint": "eslint . --ext .js,.ts,.tsx .eslintrc.js",
"lint:fix": "eslint . --ext .js,.ts,.tsx --fix .eslintrc.js",
"lint:webext": "web-ext --source-dir dist lint",
"start:firefox": "web-ext --verbose --source-dir dist run --target=firefox-desktop --firefox-preview",
"start:chrome": "web-ext --verbose --source-dir dist run --target chromium --firefox-preview"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/preset-env": "^7.19.1",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.0.3",
"@types/lodash.clone": "^4.5.7",
"@types/lodash.clonedeep": "^4.5.7",
"@types/lodash.startcase": "^4.4.7",
"@types/react": "^18.0.20",
"@types/react-dom": "^18.0.6",
"@types/webextension-polyfill": "^0.9.2",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"autoprefixer": "^10.4.8",
"babel-jest": "^29.0.3",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"cssnano": "^5.1.14",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest-dom": "^4.0.2",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-testing-library": "^5.6.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.0.3",
"jest-environment-jsdom": "^29.3.1",
"mini-css-extract-plugin": "^2.6.1",
"postcss": "^8.4.16",
"postcss-loader": "^7.0.1",
"react-test-renderer": "^18.2.0",
"svg-url-loader": "^8.0.0",
"tailwindcss": "^3.1.8",
"ts-jest": "^29.0.1",
"ts-loader": "^9.3.1",
"typescript": "^4.8.3",
"web-ext": "^7.4.0",
"webextension-polyfill": "^0.10.0",
"webextension-polyfill-ts": "^0.26.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.0"
},
"dependencies": {
"lodash.clone": "^4.5.0",
"lodash.clonedeep": "^4.5.0",
"lodash.startcase": "^4.4.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"engines": {
"node": ">=16.0.0 <17"
}
}