forked from justjavac/denoland-cn
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.85 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
{
"name": "deno_website2",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest",
"format": "yarn format:check --write",
"format:check": "prettier --check \"**/*.md\" \"*.js\" \"*.json\" \"{util,public,pages,components}/**/*.{js,ts,jsx,tsx}\" \"{util,public,pages,components}/*.{js,ts,jsx,tsx}\"",
"lint": "eslint --ext .js,.jsx,.ts,.tsx util/ pages/ components/"
},
"dependencies": {
"@docsearch/react": "^1.0.0-alpha.14",
"@tailwindcss/ui": "^0.7.2",
"apexcharts": "^3.25.0",
"dompurify": "^2.2.6",
"marked": "^2.0.1",
"next": "^10.0.7",
"next-plugin-preact": "^3.0.3",
"preact": "^10.5.12",
"preact-render-to-string": "^5.1.12",
"prism-react-renderer": "^1.2.0",
"prismjs": "^1.23.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",
"timeago-react": "^3.0.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",
"prettier": "^2.2.1",
"ts-jest": "^26.5.2",
"typescript": "^4.2.2"
}
}