forked from giscus/giscus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.15 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
{
"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": {
"@primer/octicons-react": "^19.8.0",
"dompurify": "^3.0.8",
"jsonwebtoken": "^9.0.2",
"lit-html": "^3.1.1",
"mathjax": "3.2.0",
"next": "^12.3.4",
"next-plugin-preact": "^3.0.7",
"next-translate": "^2.6.2",
"preact": "^10.19.3",
"preact-render-to-string": "^6.3.1",
"react": "npm:@preact/compat",
"react-dom": "npm:@preact/compat",
"react-ssr-prepass": "npm:preact-ssr-prepass",
"swr": "^2.2.4"
},
"devDependencies": {
"@next/bundle-analyzer": "^12.3.4",
"@types/dompurify": "^3.0.5",
"@types/node": "^18.16.9",
"@types/react": "^18.0.9",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"autoprefixer": "^10.4.17",
"cssnano": "^6.0.3",
"eslint": "^8.56.0",
"eslint-config-next": "^12.3.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"google-closure-compiler": "^20230802.0.0",
"next-translate-plugin": "^2.6.2",
"postcss": "^8.4.33",
"postcss-cli": "^11.0.0",
"postcss-import": "^16.0.0",
"prettier": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.5.11",
"stylelint": "^16.2.0",
"stylelint-config-standard": "^36.0.0",
"tailwindcss": "^3.4.1",
"tailwindcss-vanilla-rtl": "^0.4.0",
"typescript": "^5.3.3"
}
}