forked from denoland/dotland
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.94 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
{
"name": "deno_website2",
"version": "0.1.0",
"private": true,
"scripts": {
"publish_prod": "wrangler publish --env=production",
"publish_staging": "wrangler publish --env=staging",
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest",
"fmt": "deno fmt --ignore=node_modules,.next",
"fmt-check": "deno fmt --check --ignore=node_modules,.next",
"lint": "eslint --ext .js,.jsx,.ts,.tsx util/ pages/ components/"
},
"dependencies": {
"@docsearch/react": "^1.0.0-alpha.14",
"@tailwindcss/ui": "^0.7.2",
"@types/unist": "^2.0.3",
"apexcharts": "^3.25.0",
"date-fns": "^2.22.1",
"dompurify": "^2.2.6",
"marked": "^2.0.1",
"next": "^10.0.7",
"next-plugin-preact": "^3.0.3",
"orga": "^2.4.8",
"preact": "^10.5.12",
"preact-render-to-string": "^5.1.12",
"prism-react-renderer": "^1.2.0",
"prismjs": "^1.25.0",
"react": "npm:@preact/compat",
"react-apexcharts": "^1.3.7",
"react-dom": "npm:@preact/compat",
"react-ssr-prepass": "npm:preact-ssr-prepass",
"react-transition-group": "^4.4.1",
"swr": "^0.4.2",
"tailwindcss": "^1.9.6",
"tailwindcss-hyphens": "^0.1.0",
"tiny-version-compare": "^3.0.1",
"twas": "^2.1.2",
"webpack": "^4.46.0"
},
"devDependencies": {
"@types/dompurify": "^2.2.1",
"@types/jest": "^26.0.20",
"@types/marked": "^1.2.2",
"@types/node": "^14.14.31",
"@types/prismjs": "^1.16.3",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"@types/react-transition-group": "^4.4.1",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"autoprefixer": "^10.2.4",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-react": "^7.22.0",
"isomorphic-unfetch": "^3.1.0",
"jest": "^26.6.3",
"postcss-import": "^14.0.0",
"ts-jest": "^26.5.2",
"typescript": "^4.2.2"
}
}