-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
79 lines (79 loc) · 2.76 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
73
74
75
76
77
78
79
{
"name": "browser-extension-react-ts-starter",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "run-s clean && vite",
"build": "run-s clean && tsc && vite build && run-s firefox-mv2-build",
"firefox-mv2-build": "node tools/unstable_mv3ToMv2Build.js",
"clean": "run-p clean:*",
"clean:dist": "rimraf dist",
"clean:dist-firefox-v2": "rimraf dist-firefox-v2",
"format": "run-p format:*",
"format:eslint": "run-s \" lint:eslint --fix \"",
"format:prettier": "run-s \" lint:prettier --write \"",
"lint": "run-p lint:*",
"lint:eslint": "eslint . --ext .js,.ts,.tsx --max-warnings 0 --ignore-path .gitignore",
"lint:prettier": "prettier \"**/*.(md|json|yml)\" --ignore-path .gitignore --check",
"lint:type": "tsc --noEmit",
"test": "jest",
"ci:test": "run-s \" test --ci --reporters=\"default\" --reporters=\"github-actions\" \"",
"prepare": "simple-git-hooks"
},
"dependencies": {
"@eduardoac-skimlinks/webext-redux": "3.0.1-release-candidate",
"@reduxjs/toolkit": "^1.9.5",
"@twind/core": "^1.1.3",
"@twind/preset-autoprefix": "^1.0.7",
"@twind/preset-tailwind": "^1.1.4",
"lodash-es": "^4.17.21",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-redux": "^8.1.0",
"redux-persist-webextension-storage": "^1.0.2",
"reduxjs-toolkit-persist": "^7.2.1",
"webextension-polyfill": "^0.10.0"
},
"devDependencies": {
"@crxjs/vite-plugin": "^2.0.0-beta.17",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/fs-extra": "^11.0.1",
"@types/jest": "^29.5.2",
"@types/lodash-es": "^4.17.7",
"@types/react": "^18.2.12",
"@types/react-dom": "^18.2.5",
"@types/redux-persist-webextension-storage": "^1.0.0",
"@types/webextension-polyfill": "^0.10.0",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"@vitejs/plugin-react": "^4.0.0",
"autoprefixer": "^10.4.8",
"construct-style-sheets-polyfill": "^3.1.0",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"fs-extra": "^11.1.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.5.0",
"jest-chrome": "^0.8.0",
"jest-environment-jsdom": "^29.5.0",
"nano-staged": "^0.8.0",
"npm-run-all2": "^6.0.5",
"postcss": "^8.4.24",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"simple-git-hooks": "^2.8.0",
"tailwindcss": "^3.3.2",
"ts-jest": "^29.1.0",
"typescript": "4.9.5",
"vite": "^4.3.9"
},
"simple-git-hooks": {
"pre-commit": "./node_modules/.bin/nano-staged"
}
}