-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.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
{
"name": "@seldszar/coco",
"private": true,
"scripts": {
"build:chrome": "webpack --env platform=chrome --mode=production",
"build:firefox": "webpack --env platform=firefox --mode=production",
"develop:chrome": "webpack --env platform=chrome --mode=development --watch",
"develop:firefox": "webpack --env platform=firefox --mode=development --watch",
"prepare": "husky && panda codegen",
"test": "tsc --noEmit && eslint --ext=tsx,ts ."
},
"dependencies": {
"@tabler/icons-react": "^3.10.0",
"preact": "^10.22.0",
"webextension-polyfill": "^0.12.0",
"wouter": "^3.3.1"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@csstools/postcss-cascade-layers": "^4.0.6",
"@pandacss/dev": "^0.41.0",
"@seldszar/yael": "^2.2.0",
"@swc/core": "^1.4.16",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/webextension-polyfill": "^0.10.7",
"@types/webpack-env": "^1.18.4",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"graphql": "^16.9.0",
"html-webpack-plugin": "^5.6.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"mini-css-extract-plugin": "^2.9.0",
"postcss": "^8.4.39",
"postcss-loader": "^8.1.1",
"prettier": "^3.2.5",
"swc-loader": "^0.2.6",
"typescript": "^5.4.5",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.10.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --fix"
}
}