-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 3.66 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "productivity-booster",
"version": "0.0.0",
"license": "MIT",
"description": "A browser extension to boost your productivity",
"type": "module",
"engines": {
"npm": "please-use-yarn",
"yarn": ">= 1.22.15"
},
"publishConfig": {
"registry": "https://registry.yarnpkg.org"
},
"scripts": {
"build": "tsc --noEmit && vite build",
"build:firefox": "tsc --noEmit && cross-env __FIREFOX__=true vite build",
"build:watch": "cross-env __DEV__=true vite build -w --mode development",
"build:firefox:watch": "cross-env __DEV__=true __FIREFOX__=true vite build -w --mode development",
"build:hmr": "rollup --config utils/reload/rollup.config.mjs",
"wss": "node utils/reload/initReloadServer.js",
"dev": "yarn build:hmr && (run-p wss build:watch)",
"dev:firefox": "yarn build:hmr && (run-p wss build:firefox:watch)",
"test": "jest --maxWorkers=1 --maxConcurrency=1 --detectOpenHandles",
"lint": "eslint src --ext .js --ext .jsx --ext .ts --ext .tsx --output-file eslint_report.json --format json",
"lint:fix": "yarn lint --fix",
"format": "prettier . --check",
"format:fix": "prettier . --write",
"prepare": "husky install"
},
"dependencies": {
"@dotlottie/react-player": "^1.6.15",
"@reduxjs/toolkit": "^1.9.7",
"@twind/preset-tailwind-forms": "^1.1.2",
"buffer": "^6.0.3",
"classnames": "^2.3.2",
"construct-style-sheets-polyfill": "^3.1.0",
"framer-motion": "^10.16.4",
"ky": "0.33.3",
"lodash.isnil": "^4.0.0",
"lodash.unescape": "^4.0.1",
"moment": "^2.29.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-redux": "^8.1.3",
"use-chrome-storage": "^1.2.2",
"usehooks-ts": "^2.14.0",
"webextension-polyfill": "0.10.0"
},
"devDependencies": {
"@commitlint/cli": "18.2.0",
"@commitlint/config-conventional": "18.1.0",
"@rollup/plugin-typescript": "11.1.5",
"@testing-library/react": "14.0.0",
"@twind/core": "^1.1.3",
"@twind/intellisense": "^1.1.3",
"@twind/preset-autoprefix": "^1.0.7",
"@twind/preset-tailwind": "^1.1.4",
"@twind/preset-typography": "^1.0.7",
"@types/chrome": "0.0.248",
"@types/jest": "29.5.7",
"@types/jest-environment-puppeteer": "^5.0.6",
"@types/lodash.isnil": "^4.0.9",
"@types/lodash.unescape": "^4.0.9",
"@types/node": "20.8.10",
"@types/react": "18.2.35",
"@types/react-dom": "18.2.14",
"@types/user-agents": "^1.0.4",
"@types/ws": "8.5.8",
"@typescript-eslint/eslint-plugin": "6.9.1",
"@typescript-eslint/parser": "6.9.1",
"@vitejs/plugin-react": "2.2.0",
"autoprefixer": "^10.4.16",
"chokidar": "3.5.3",
"cross-env": "7.0.3",
"dom-parser": "^1.1.5",
"eslint": "8.53.0",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-prettier": "5.0.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"fingerprint-injector": "^2.1.48",
"husky": "8.0.3",
"jest": "^29.7.0",
"jest-puppeteer": "^9.0.2",
"lint-staged": "15.0.2",
"npm-run-all": "4.1.5",
"pptr-mock-server": "^1.3.0",
"prettier": "3.0.3",
"puppeteer": "^21.6.0",
"rollup": "4.3.0",
"ts-jest": "^29.1.1",
"tslib": "2.6.2",
"typescript": "5.2.2",
"user-agents": "^1.1.116",
"vite": "^3.2.7",
"vite-plugin-static-copy": "^1.0.0",
"ws": "8.14.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
}
}