-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
84 lines (84 loc) · 2.67 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
{
"name": "bookmark-manager",
"version": "1.2.2",
"description": "Bookmark management with ease",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development webpack",
"dev:firefox": "cross-env BUILD_TARGET=firefox pnpm run dev",
"dev:chrome": "cross-env BUILD_TARGET=chrome pnpm run dev",
"build": "cross-env NODE_ENV=production webpack",
"build:firefox": "cross-env BUILD_TARGET=firefox pnpm run build",
"build:chrome": "cross-env BUILD_TARGET=chrome pnpm run build",
"analyze": "cross-env NODE_ENV=production webpack --analyze",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier . --write",
"pack": "node scripts/pack.js",
"pack:firefox": "cross-env BUILD_TARGET=firefox node scripts/pack.js",
"pack:chrome": "cross-env BUILD_TARGET=chrome node scripts/pack.js",
"prepare": "husky"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
"@babel/runtime": "^7.8.7",
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@fontsource/roboto": "^5.0.8",
"@mui/icons-material": "^5.15.11",
"@mui/material": "^5.15.11",
"copy-to-clipboard": "^3.2.1",
"lodash": "^4.17.15",
"natural-compare": "^1.4.0",
"query-string": "^9.0.0",
"react": "^18.2.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.2.0",
"webextension-polyfill": "^0.10.0",
"zustand": "^4.5.1"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.2",
"@types/chrome": "^0.0.261",
"@types/firefox-webext-browser": "^120.0.1",
"@types/lodash": "^4.14.149",
"@types/natural-compare": "^1.4.0",
"@types/react": "^18.2.58",
"@types/react-dom": "^18.2.19",
"@types/webextension-polyfill": "^0.10.7",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"babel-loader": "^9.1.3",
"babel-plugin-import": "^1.13.8",
"cross-env": "^7.0.3",
"css-loader": "^6.10.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.33.2",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"style-loader": "^3.3.4",
"typescript": "^5.3.3",
"web-ext": "^7.11.0",
"webpack": "^5.90.3",
"webpack-bundle-analyzer": "^4.10.1",
"webpack-cli": "^5.1.4"
}
}