-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.17 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
{
"$schema": "https://json.schemastore.org/package.json",
"author": "Romain Racamier-Lafon <[email protected]>",
"bugs": "https://github.com/Shuunen/folio/issues",
"dependencies": {
"flowbite": "2.5",
"flowbite-vue": "0.1",
"lightgallery": "2.7",
"shuutils": "9.0"
},
"description": "My personal portfolio",
"devDependencies": {
"@icon-park/vue-next": "1.4",
"@tailwindcss/typography": "0.5",
"@vitest/coverage-v8": "2.1",
"autoprefixer": "10.4",
"dependency-cruiser": "latest",
"eslint": "*",
"eslint-plugin-shuunen": "0.3",
"postcss": "8.4",
"repo-check": "1.37",
"tailwindcss": "3.4",
"typescript": "5.6",
"unplugin-vue-components": "0.27",
"vite": "*",
"vitepress": "1.3",
"vitest": "2.1",
"vue": "*"
},
"files": [
"public"
],
"homepage": "https://github.com/Shuunen/folio#readme",
"keywords": [
"Romain Racamier-Lafon",
"personal",
"website",
"page",
"portfolio"
],
"license": "GPL-3.0",
"name": "folio",
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search",
"search-insights"
]
}
},
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/Shuunen/folio.git"
},
"scripts": {
"build": "pnpm build:vp && pnpm build:nonce && pnpm build:mark && echo build success",
"build:mark": "unique-mark .vitepress/dist/**/*.html",
"build:nonce": "bash bin/inject-nonce.sh && echo build nonce success",
"build:vp": "vitepress build && echo vitepress build",
"check": "pnpm install && repo-check && pnpm build && pnpm lint && pnpm test && echo check success",
"dev": "vitepress dev",
"lint": "tsc --noEmit && echo tsc success && eslint --cache . && echo eslint success && depcruise components pages --config && echo lint success",
"postversion": "git push && git push --tags",
"preversion": "pnpm lint",
"serve": "vitepress serve",
"test": "vitest --run --coverage && echo test success",
"test:update": "vitest --run --update && echo test update success",
"test:watch": "vitest --coverage"
},
"type": "module",
"version": "4.1.0"
}