-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.64 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.64 KB
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
{
"name": "alphacoderz",
"description": "Official website for @AlphaCoderz",
"type": "module",
"version": "0.0.1",
"private": true,
"author": "AlphaCoderz",
"scripts": {
"dev": "astro dev",
"dev:lan": "astro dev --host 0.0.0.0",
"start": "astro dev",
"build": "astro build",
"prebuild": "rimraf dist",
"preview": "astro preview",
"astro": "astro",
"prepare": "husky install",
"typecheck": "tsc --noEmit",
"lint": "eslint . --ext .ts, .tsx, .jsx, .js, .json",
"lint:fix": "eslint . --ext .ts, .tsx, .jsx, .js, .json --fix",
"prettier": "prettier --write .",
"lint:staged": "lint-staged"
},
"engines": {
"node": ">=14.18.0"
},
"dependencies": {
"astro": "^1.6.10"
},
"devDependencies": {
"eslint": "^8.28.0",
"eslint-plugin-astro": "^0.21.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"gh-pages": "^4.0.0",
"husky": "^8.0.2",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"prettier-plugin-astro": "^0.7.0",
"pretty-quick": "^3.1.3",
"typescript": "^4.9.3"
},
"lint-staged": {
"*.(js|jsx|ts|tsx|html)": [
"prettier --write",
"eslint --fix"
],
"*.(astro|json)": "prettier --write"
},
"keywords": [
"AlphaCoderz",
"alphacoderz",
"alphacoderz.github.io",
"Astro",
"static-site",
"open-source"
],
"repository": {
"type": "git",
"url": "git+https://github.com/alphacoderz/alphacoderz.github.io.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/alphacoderz/alphacoderz.github.io/issues"
},
"homepage": "https://alphacoderz.github.io"
}