forked from denoland/dotland
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.71 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
{
"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 {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": {
"@tailwindcss/ui": "^0.3.0",
"apexcharts": "^3.19.0",
"next": "9.4.0",
"preact": "^10.4.1",
"preact-render-to-string": "^5.1.8",
"prism": "^4.1.2",
"prism-react-renderer": "^1.1.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-markdown": "^4.3.1",
"react-ssr-prepass": "npm:preact-ssr-prepass@^1.0.1",
"react-transition-group": "^4.4.1",
"tailwindcss": "^1.4.6",
"tailwindcss-hyphens": "^0.1.0"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^2.2.0",
"@types/jest": "^25.2.1",
"@types/node": "^13.13.5",
"@types/react": "^16.9.35",
"@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"
}
}