forked from denoland/dotland
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.97 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.97 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
{
"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",
"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",
"@prefresh/next": "^0.3.2",
"@tailwindcss/ui": "^0.4.0",
"apexcharts": "^3.19.3",
"dompurify": "^2.0.12",
"marked": "^1.1.1",
"next": "^9.5.0",
"preact": "^10.4.7",
"preact-render-to-string": "^5.1.10",
"prism-react-renderer": "^1.1.1",
"prismjs": "^1.21.0",
"react": "github:preact-compat/react#1.0.0",
"react-apexcharts": "^1.3.7",
"react-dom": "github:preact-compat/react-dom#1.0.0",
"react-ssr-prepass": "npm:preact-ssr-prepass@^1.0.1",
"react-transition-group": "^4.4.1",
"swr": "^0.2.3",
"tailwindcss": "^1.5.2",
"tailwindcss-hyphens": "^0.1.0",
"timeago-react": "^3.0.0"
},
"devDependencies": {
"@types/dompurify": "^2.0.3",
"@types/jest": "^25.2.1",
"@types/marked": "^1.1.0",
"@types/node": "^13.13.5",
"@types/prismjs": "^1.16.1",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/react-transition-group": "^4.2.4",
"@typescript-eslint/eslint-plugin": "^2.31.0",
"@typescript-eslint/parser": "^2.31.0",
"autoprefixer": "^9.7.4",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-react": "^7.19.0",
"isomorphic-unfetch": "^3.0.0",
"jest": "^26.0.1",
"postcss-import": "^12.0.1",
"prettier": "^2.0.5",
"ts-jest": "^25.5.1",
"typescript": "^3.8.3"
}
}