forked from varianter/handbook-se
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.56 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
{
"name": "@variant/handbook-v2",
"private": true,
"version": "1.0.0",
"keywords": [],
"author": "Mikael Brevik <mb@variant.no>",
"license": "CC BY-SA 4.0",
"description": "Variant's handbook-v2",
"devDependencies": {
"@types/mdx": "^2.0.2",
"@types/node": "^18.11.17",
"@types/qs": "^6.9.7",
"@types/react": "^18.0.21",
"@typescript-eslint/parser": "^5.40.0",
"@variant/prettier-config": "^1.0.2",
"dotenv": "^16.0.3",
"eslint": "^8.30.0",
"eslint-plugin-react-hooks": "^4.6.0",
"fast-glob": "^3.2.12",
"husky": "^8.0.1",
"lint-staged": "^13.1.0",
"prettier": "^2.7.1",
"remark": "^14.0.2",
"typescript": "^4.9.4"
},
"dependencies": {
"@mdx-js/loader": "^2.1.5",
"@mdx-js/mdx": "2.2.1",
"@mdx-js/react": "^2.1.5",
"@variant/profile": "^3.0.1",
"gray-matter": "^4.0.3",
"hamburger-react": "^2.5.0",
"next": "^13.0.7",
"next-images": "^1.8.4",
"qs": "^6.11.0",
"react": "18.2.0",
"react-dom": "18.2.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"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"start": "next start",
"export": "next export"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.{ts,css,md}": "prettier --write"
},
"prettier": "@variant/prettier-config"
}