forked from varianter/handbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.16 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
{
"name": "@variant/handbook-v2",
"private": true,
"version": "1.0.0",
"keywords": [],
"engines": {
"node": ">=14.0.0 <17.0.0"
},
"author": "Anders N. Slinde <[email protected]>",
"license": "MIT",
"description": "Variant's handbook-v2",
"devDependencies": {
"@types/mdx": "^2.0.2",
"@types/node": "^18.11.0",
"@types/qs": "^6.9.7",
"@types/react": "^18.0.21",
"@typescript-eslint/parser": "^5.40.0",
"@variant/prettier-config": "^1.0.2",
"algoliasearch": "^4.14.2",
"dotenv": "^16.0.3",
"eslint": "^8.25.0",
"eslint-plugin-react-hooks": "^4.6.0",
"estree-eval": "^1.0.3",
"fast-glob": "^3.2.12",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"lodash.isequal": "^4.5.0",
"prettier": "^2.7.1",
"remark": "^14.0.2",
"to-vfile": "^7.2.3",
"typescript": "^4.8.4",
"unist-util-flatmap": "^1.0.0",
"unist-util-select": "^4.0.1",
"unist-util-visit": "^4.1.1"
},
"dependencies": {
"@mdx-js/loader": "^2.1.5",
"@mdx-js/mdx": "2.1.5",
"@mdx-js/react": "^2.1.5",
"@pabra/sortby": "^1.0.2",
"@variant/profile": "^3.0.1",
"gray-matter": "^4.0.3",
"hamburger-react": "^2.5.0",
"instantsearch.js": "^4.48.0",
"next": "^12.3.1",
"next-auth": "^4.14.0",
"next-images": "^1.8.4",
"qs": "^6.11.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hotkeys-hook": "^3.4.7",
"react-instantsearch-hooks-server": "^6.36.0",
"react-instantsearch-hooks-web": "^6.36.0",
"remark-frontmatter": "^4.0.1",
"remark-gfm": "^3.0.1",
"remark-mdx": "^2.1.5",
"remark-mdx-frontmatter": "^2.0.3",
"remark-mdx-toc": "^0.3.1",
"slugify": "^1.6.5",
"swr": "^1.3.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"production-build": "sh build.sh",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"start": "next start",
"export": "next export",
"search-index": "node search-index/index.mjs"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.{ts,css,md}": "prettier --write"
},
"prettier": "@variant/prettier-config"
}