-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
94 lines (94 loc) · 2.78 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
{
"private": true,
"repository": "[email protected]:BlackGlory/copycat.git",
"author": "BlackGlory <[email protected]>",
"license": "MIT",
"type": "module",
"scripts": {
"prepare": "ts-patch install -s",
"postinstall": "patch-package",
"lint": "eslint --ext .js,.jsx,.ts,.tsx --quiet src __tests__",
"test": "vitest --run",
"clean": "rimraf dist",
"dev": "webpack --watch --config webpack.dev.cjs",
"build": "webpack --config webpack.prod.cjs"
},
"husky": {
"hooks": {
"pre-commit": "run-s prepare lint clean build test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@types/chrome": "^0.0.254",
"@types/dompurify": "^3.0.5",
"@types/jsdom": "^21.1.6",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@types/urijs": "^1.19.25",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"autoprefixer": "^10.4.16",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.8.1",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"extra-tags": "^0.4.2",
"husky": "^4.3.8",
"npm-run-all": "^4.1.5",
"patch-package": "^8.0.0",
"path-browserify": "^1.0.1",
"postcss": "^8.4.32",
"postcss-loader": "^7.3.3",
"style-loader": "^3.3.3",
"tailwindcss": "^3.4.0",
"ts-loader": "^9.5.1",
"ts-patch": "^3.1.1",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "5.3.3",
"typescript-transform-paths": "^3.4.6",
"url": "^0.11.3",
"vite": "^5.0.10",
"vite-tsconfig-paths": "^4.2.2",
"vitest": "^1.6.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.10.0"
},
"dependencies": {
"@blackglory/prelude": "^0.3.4",
"@delight-rpc/webextension": "^0.3.0",
"@headlessui/react": "^1.7.17",
"@heroicons/react": "^2.1.1",
"classnames": "^2.3.2",
"delight-rpc": "^6.1.2",
"dompurify": "^3.0.6",
"extra-blob": "^0.1.2",
"extra-dom": "^0.6.1",
"extra-promise": "^6.0.8",
"extra-proxy": "^0.4.1",
"extra-react-hooks": "^0.6.5",
"extra-react-store": "^0.1.9",
"extra-semver": "^0.2.2",
"extra-utils": "^5.5.2",
"extra-webextension": "^0.4.0",
"html2bbcode": "^1.2.6",
"immer": "^10.0.3",
"iterable-operator": "^4.0.6",
"prettier": "^3.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"rehype-parse": "^9.0.0",
"rehype-remark": "^10.0.0",
"remark-gfm": "^4.0.0",
"remark-stringify": "^11.0.0",
"unified": "^11.0.4",
"urijs": "^1.19.11",
"url-operator": "^0.3.1"
}
}