-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.23 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
{
"name": "hop",
"version": "1.1.15",
"description": "An icon-first bookmark manager",
"main": "src/public/index.tsx",
"packageManager": "[email protected]",
"engines": {
"node": "22.12.0"
},
"scripts": {
"dev:chrome": "env-cmd -e dev-chrome ./build.ts",
"dev:firefox": "env-cmd -e dev-firefox ./build.ts",
"preview:firefox": "env-cmd -e preview-firefox web-ext run",
"build": "conc \"pnpm build:chrome\" \"pnpm build:firefox\"",
"build:chrome": "env-cmd -e prod-chrome ./build.ts",
"build:firefox": "env-cmd -e prod-firefox ./build.ts",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}'",
"prepare": "husky install",
"test": "playwright test",
"type-check": "tsc --project src/ --noEmit & tsc --project tests/ --noEmit & wait"
},
"author": "Mason McElvain",
"license": "MIT",
"dependencies": {
"@chakra-ui/react": "2.10.4",
"@emotion/react": "11.14.0",
"@emotion/styled": "11.14.0",
"framer-motion": "11.15.0",
"react": "18.3.1",
"react-dnd": "16.0.1",
"react-dnd-html5-backend": "16.0.1",
"react-dom": "18.3.1",
"react-feather": "2.0.10",
"zod": "3.24.1",
"zustand": "5.0.2"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@playwright/test": "1.49.1",
"@types/node": "22.10.2",
"@types/react": "18.3.18",
"@types/react-dom": "18.3.5",
"@types/webextension-polyfill": "0.12.1",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"concurrently": "9.1.0",
"dotenv": "16.4.7",
"env-cmd": "10.1.0",
"esbuild": "0.24.2",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "4.6.2",
"husky": "9.1.7",
"lint-staged": "15.2.11",
"prettier": "3.3.3",
"prettier-plugin-tailwindcss": "0.6.9",
"tailwindcss": "3.4.17",
"ts-node": "10.9.2",
"typescript": "5.7.2",
"web-ext": "8.3.0",
"webextension-polyfill": "0.12.0"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown"
}
}