-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2 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
{
"name": "http-zephire-nz",
"version": "1.0.0",
"description": "My personal website, https://zephire.nz",
"type": "module",
"engines": {
"node": ">= 20"
},
"scripts": {
"build": "vite build",
"lint": "npm run lint:lit-analyzer && npm run lint:eslint",
"lint:eslint": "eslint 'src/**/*.ts'",
"lint:lit-analyzer": "lit-analyzer",
"format": "prettier \"**/*.{cjs,html,js,json,md,ts}\" --ignore-path ./.eslintignore --write",
"analyze": "cem analyze --litelement --globs \"src/**/*.ts\"",
"analyze:watch": "cem analyze --litelement --globs \"src/**/*.ts\" --watch",
"dev": "BUILD_UNPUBLISHED='true' vite"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ZephireNZ/zephire.nz.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/ZephireNZ/zephire.nz/issues"
},
"homepage": "https://github.com/ZephireNZ/zephire.nz#readme",
"dependencies": {
"@material/card": "^14.0.0",
"@material/layout-grid": "^14.0.0",
"@material/mwc-button": "^0.27.0",
"@material/mwc-drawer": "^0.27.0",
"@material/mwc-icon": "^0.27.0",
"@material/mwc-icon-button": "^0.27.0",
"@material/mwc-list": "^0.27.0",
"@material/mwc-top-app-bar-fixed": "^0.27.0",
"@material/theme": "^14.0.0",
"@material/typography": "^14.0.0",
"@mdi/js": "^7.0.96",
"@vaadin/router": "^1.7.4",
"fast-glob": "^3.2.11",
"gray-matter": "^4.0.3",
"lit": "^2.8.0",
"markdown-it": "^13.0.1",
"markdown-it-attrs": "^4.1.4"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@types/markdown-it": "^12.2.3",
"@types/markdown-it-attrs": "^4.1.0",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"eslint": "^8.22.0",
"lit-analyzer": "^2.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"sass": "^1.54.4",
"ts-lit-plugin": "^2.0.2",
"typescript": "^5.3.3",
"vite": "^4.5.5",
"vite-plugin-node-polyfills": "^0.22.0"
}
}