-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
59 lines (59 loc) · 1.6 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
{
"name": "ixdf-handbook",
"description": "IxDF Company handbook for developers",
"main": "README.md",
"private": true,
"type": "module",
"scripts": {
"test": "npm run style:lint",
"style:lint": "prettier \"**/*.md\"",
"style:fix": "prettier \"**/*.md\" --write",
"docs:build": "vitepress build",
"docs:dev": "vitepress dev",
"docs:preview": "vitepress preview",
"docs:fix": "prettier \"**/*.md\" --write"
},
"engines": {
"node": ">=20.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/InteractionDesignFoundation/handbook.git"
},
"keywords": [
"handbook",
"company culture",
"engineering culture"
],
"bugs": {
"url": "https://github.com/InteractionDesignFoundation/handbook/issues"
},
"homepage": "https://github.com/InteractionDesignFoundation/handbook#readme",
"dependencies": {
"autoprefixer": "^10.4.19",
"husky": "^8.0.3",
"mermaid": "^10.9.3",
"postcss": "^8.4.39",
"postcss-import": "^16.1.0",
"prettier": "^3.1",
"pretty-quick": "^3.1.3",
"tailwindcss": "^3.4.4"
},
"postcss": {
"plugins": {
"postcss-import": {},
"tailwindcss": {},
"autoprefixer": {}
}
},
"devDependencies": {
"vitepress": "^1.0",
"vitepress-plugin-mermaid": "^2.0.16",
"vitepress-sidebar": "^1.18.5"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}