forked from giscus/giscus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.14 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 **/*.css && eslint . --cache --max-warnings 0",
"lint:fix": "stylelint --fix **/*.css && eslint --fix . --cache --max-warnings 0",
"format": "prettier --check .",
"format:fix": "prettier --write ."
},
"dependencies": {
"@primer/octicons-react": "^17.9.0",
"dompurify": "^2.4.1",
"jsonwebtoken": "^8.5.1",
"lit-html": "^2.4.0",
"mathjax": "3.2.0",
"next": "^12.3.4",
"next-plugin-preact": "^3.0.7",
"next-translate": "^1.6.0",
"preact": "^10.11.3",
"preact-render-to-string": "^5.2.6",
"react": "npm:@preact/compat",
"react-dom": "npm:@preact/compat",
"react-ssr-prepass": "npm:preact-ssr-prepass",
"swr": "^1.3.0"
},
"devDependencies": {
"@next/bundle-analyzer": "^12.3.4",
"@types/dompurify": "^2.4.0",
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "^16.18.3",
"@types/react": "^18.0.9",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"autoprefixer": "^10.4.13",
"cssnano": "^5.1.14",
"eslint": "^7.22.0",
"eslint-config-next": "^12.3.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"google-closure-compiler": "^20221102.0.1",
"postcss": "^8.4.19",
"postcss-cli": "^10.0.0",
"postcss-import": "^15.0.0",
"prettier": "^2.8.0",
"prettier-plugin-tailwindcss": "^0.2.0",
"stylelint": "^14.15.0",
"stylelint-config-standard": "^29.0.0",
"tailwindcss": "^3.2.4",
"tailwindcss-vanilla-rtl": "^0.3.0",
"typescript": "^4.9.3"
}
}