forked from alphacoderz/devnotez
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.71 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
{
"name": "devnotez",
"type": "module",
"version": "1.0.0",
"private": true,
"description": "An open-source developer's blogging portal",
"main": "index.js",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install",
"lint:staged": "npx lint-staged"
},
"keywords": [
"JavaScript",
"Nodejs",
"AstroJs",
"dev-blog",
"dev-note",
"devnote",
"dev-notes",
"devnotes",
"devnotez",
"developer's note",
"notes by developers",
"notes by engineers",
"notes for cs students",
"notes for cse students",
"notes for swe students",
"notes for web developers"
],
"engines": {
"node": ">=14.18.0"
},
"dependencies": {
"@astrojs/mdx": "^0.11.4",
"@astrojs/rss": "^1.0.2",
"@astrojs/sitemap": "^1.0.0",
"astro": "^1.5.0"
},
"devDependencies": {
"eslint": "^8.25.0",
"eslint-plugin-astro": "^0.20.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.0",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"prettier-plugin-astro": "^0.6.0",
"typescript": "^4.8.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alphacoderz/devnotez.git"
},
"lint-staged": {
"*.(js|ts|jsx|tsx)": [
"npx prettier --write",
"eslint"
],
"*.(html|json|astro)": "prettier --write"
},
"author": "alphacoderz",
"license": "MIT",
"bugs": {
"url": "https://github.com/alphacoderz/devnotez/issues"
},
"homepage": "https://github.com/alphacoderz/devnotez#readme"
}