-
-
Notifications
You must be signed in to change notification settings - Fork 477
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.19 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.19 KB
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
{
"name": "giscus.app",
"version": "0.0.0",
"private": false,
"browserslist": [
">0.3%",
"not ie 11",
"not dead",
"not op_mini all"
],
"scripts": {
"cscript": "tsc client.ts --outDir public",
"cthemes": "postcss styles/themes/*.css --dir public/themes --config styles/themes",
"mscript": "google-closure-compiler < public/client.js --js_output_file public/client.js",
"dev": "yarn cscript --watch --preserveWatchOutput & yarn cthemes --watch & next dev",
"build": "yarn cscript && yarn cthemes && yarn mscript && next build",
"start": "next start",
"lint": "stylelint styles/**/*.css && eslint . --cache --max-warnings 0",
"lint:fix": "stylelint --fix styles/**/*.css && eslint --fix . --cache --max-warnings 0",
"format": "prettier --check .",
"format:fix": "prettier --write ."
},
"dependencies": {
"@next/bundle-analyzer": "^12.3.4",
"@primer/octicons-react": "^19.14.0",
"@valkey/valkey-glide": "^2.4.0",
"dompurify": "^3.2.3",
"jsonwebtoken": "^9.0.2",
"lit-html": "^3.2.1",
"mathjax": "3.2.0",
"next": "^12.3.4",
"next-plugin-preact": "^3.0.7",
"next-translate": "^2.6.2",
"next-translate-plugin": "^2.6.2",
"preact": "^10.23.2",
"preact-render-to-string": "^6.5.12",
"react": "npm:@preact/compat",
"react-dom": "npm:@preact/compat",
"react-ssr-prepass": "npm:preact-ssr-prepass",
"swr": "^2.3.0"
},
"devDependencies": {
"@types/dompurify": "^3.2.0",
"@types/node": "^22.10.2",
"@types/react": "^18.0.9",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"autoprefixer": "^10.4.20",
"cssnano": "^7.0.6",
"eslint": "^8.57.0",
"eslint-config-next": "^12.3.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"google-closure-compiler": "^20240317.0.0",
"postcss": "^8.4.49",
"postcss-cli": "^11.0.0",
"postcss-import": "^16.1.0",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"stylelint": "^16.12.0",
"stylelint-config-standard": "^36.0.1",
"tailwindcss": "^3.4.17",
"tailwindcss-vanilla-rtl": "^0.4.0",
"typescript": "^5.7.2"
}
}