forked from json-schema-org/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.31 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
66
67
68
69
70
71
72
73
74
75
76
{
"name": "json-schema",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev-c": "rm -rf .next && rm -rf node_modules && yarn && yarn dev",
"build": "next build",
"postbuild": "next-sitemap --config next-sitemap.config.js",
"start": "serve out",
"export": "next export",
"lint": "eslint . --ext .tsx --ext .ts --max-warnings 0",
"lint:fix": "eslint . --ext .tsx --ext .ts --fix --max-warnings 0",
"ts": "tsc --noEmit",
"typecheck": "tsc --pretty --noEmit",
"format:fix": "prettier --write \"**/*.{ts,tsx,json,scss,css}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,scss,css}\"",
"prepare": "husky"
},
"engines": {
"node": "^20.0.0"
},
"dependencies": {
"@docsearch/react": "3.6.1",
"axios": "1.6.0",
"classnames": "^2.3.1",
"feed": "^4.2.2",
"gray-matter": "^4.0.3",
"js-yaml": "^4.1.0",
"markdown-to-jsx": "^7.4.7",
"moment": "2.29.4",
"next": "14.2.5",
"next-sitemap": "^4.2.3",
"next-themes": "^0.3.0",
"node-ical": "0.16.1",
"react": "18.3.1",
"react-dom": "18.2.0",
"react-syntax-highlighter": "^15.5.0",
"react-text-truncate": "^0.19.0",
"reading-time": "^1.5.0",
"slate": "^0.100.0",
"slate-react": "^0.100.1",
"slugify": "^1.6.5",
"yarn": "1.22.19",
"zero-fill": "^2.2.4",
"zustand": "^4.0.0-rc.1"
},
"devDependencies": {
"@next/eslint-plugin-next": "^14.0.1",
"@types/js-yaml": "^4.0.5",
"@types/node": "^20.0.0",
"@types/react": "18.3.3",
"@types/node": "^20.14.10",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/react-text-truncate": "^0.14.1",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"autoprefixer": "^10.4.16",
"eslint": "8.53.0",
"eslint-config-next": "14.2.3",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.4.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.4.0",
"husky": "^9.0.11",
"postcss": "^8.4.31",
"prettier": "3.2.5",
"tailwindcss": "^3.3.5",
"typescript": "5.2.2"
}
}