forked from json-schema-org/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.48 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"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",
"cypress:open": "cypress open",
"cypress:run:all": "cypress run && cypress run --component",
"test:coverage:e2e": "cypress run --env coverage=true",
"test:coverage:component": "cypress run --component --env coverage=true",
"test:coverage:all": "yarn test:coverage:e2e && yarn test:coverage:component && nyc merge .nyc_output coverage.json && nyc report --reporter=html --reporter=text"
},
"engines": {
"node": "^20.0.0"
},
"dependencies": {
"@docsearch/react": "3.6.1",
"@types/jsonpath": "^0.2.4",
"axios": "1.7.7",
"babel-loader": "^9.1.3",
"classnames": "^2.5.1",
"feed": "^4.2.2",
"file-saver": "^2.0.5",
"fuse.js": "^7.0.0",
"gray-matter": "^4.0.3",
"js-yaml": "^4.1.0",
"jsonpath": "^1.1.1",
"jszip": "^3.10.1",
"markdown-to-jsx": "^7.4.7",
"moment": "2.29.4",
"next": "14.2.14",
"next-sitemap": "^4.2.3",
"next-themes": "^0.3.0",
"node-ical": "0.19.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-syntax-highlighter": "^15.6.1",
"react-text-truncate": "^0.19.0",
"reading-time": "^1.5.0",
"slate": "^0.103.0",
"slate-react": "^0.108.0",
"slugify": "^1.6.5",
"yarn": "1.22.22",
"zero-fill": "^2.2.4",
"zustand": "^5.0.0"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.26.0",
"@cypress/code-coverage": "^3.13.2",
"@next/eslint-plugin-next": "^14.0.1",
"@svgr/webpack": "^8.1.0",
"@types/babel__core": "^7",
"@types/babel__preset-env": "^7",
"@types/file-saver": "^2.0.7",
"@types/js-yaml": "^4.0.5",
"@types/node": "^22.4.2",
"@types/react": "18.3.5",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/react-text-truncate": "^0.19.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"autoprefixer": "^10.4.20",
"babel-plugin-istanbul": "^7.0.0",
"cypress": "^13.13.1",
"eslint": "8.57.0",
"eslint-config-next": "14.2.3",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-cypress": "^3.4.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.4.0",
"husky": "^9.1.6",
"nyc": "^17.1.0",
"postcss": "^8.4.41",
"prettier": "3.3.3",
"tailwindcss": "^3.3.5",
"typescript": "5.2.2",
"webpack": "^5.94.0"
},
"babel": {
"presets": [
"next/babel"
],
"plugins": [
"istanbul"
]
},
"packageManager": "[email protected]+sha512.91d93b445d9284e7ed52931369bc89a663414e5582d00eea45c67ddc459a2582919eece27c412d6ffd1bd0793ff35399381cb229326b961798ce4f4cc60ddfdb"
}