-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
94 lines (94 loc) · 2.57 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
{
"name": "@variant/handbook-v2",
"private": true,
"version": "1.0.0",
"keywords": [],
"engines": {
"node": "^20.0.0"
},
"author": "Anders N. Slinde <ans@variant.no>",
"license": "MIT, CC BY-SA 4.0",
"description": "Variant's handbook-v2",
"devDependencies": {
"@pinecone-database/pinecone": "^3.0.0",
"@types/mdx": "^2.0.13",
"@types/node": "^20.12.7",
"@types/qs": "^6.9.15",
"@types/react": "^18.2.79",
"@types/react-dom": "^18.2.25",
"@typescript-eslint/parser": "^7.7.1",
"@variant/prettier-config": "^1.0.2",
"algoliasearch": "^4.23.3",
"cli-progress": "^3.12.0",
"dotenv": "^16.4.5",
"eslint": "^9.1.1",
"eslint-plugin-react-hooks": "^4.6.0",
"estree-eval": "^1.0.3",
"fast-glob": "^3.3.2",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"lodash.isequal": "^4.5.0",
"patch-package": "^8.0.0",
"prettier": "^3.2.5",
"remark": "^15.0.1",
"to-vfile": "^8.0.0",
"typescript": "^5.4.5",
"unist-util-flatmap": "^1.0.0",
"unist-util-select": "^5.1.0",
"unist-util-visit": "^5.0.0"
},
"dependencies": {
"@azure/openai": "^1.0.0-beta.12",
"@mdx-js/loader": "^3.0.1",
"@mdx-js/mdx": "3.0.1",
"@mdx-js/react": "^3.0.1",
"@pabra/sortby": "^1.0.2",
"@resvg/resvg-js": "^2.6.2",
"@types/common-tags": "^1.8.4",
"@variant/profile": "^3.0.1",
"common-tags": "^1.8.2",
"gpt3-tokenizer": "^1.1.5",
"gray-matter": "^4.0.3",
"hamburger-react": "^2.5.0",
"instantsearch.js": "^4.67.0",
"lru-cache": "^10.2.0",
"next": "^14.2.10",
"next-auth": "^4.24.7",
"next-images": "^1.8.5",
"openid-client": "^5.6.5",
"qs": "^6.12.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hotkeys-hook": "^4.5.0",
"react-instantsearch": "^7.7.2",
"react-instantsearch-core": "^7.7.2",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.0",
"remark-mdx": "^3.0.1",
"remark-mdx-frontmatter": "^4.0.0",
"remark-mdx-toc": "^0.3.1",
"satori": "^0.10.13",
"slugify": "^1.6.6",
"swr": "^2.2.5"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"production-build": "next build",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"start": "next start",
"export": "next export",
"search-index": "node search-index/index.mjs",
"postinstall": "patch-package"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.{ts,css,md}": "prettier --write"
},
"prettier": "@variant/prettier-config"
}