-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
54 lines (54 loc) · 1.31 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
{
"name": "servland",
"version": "1.0.0",
"description": "A modern, responsive business landing page theme built with Astro and Tailwind CSS",
"type": "module",
"author": {
"name": "locobean",
"url": "https://github.com/locobean"
},
"homepage": "https://github.com/locobean/servland",
"repository": {
"type": "git",
"url": "git+https://github.com/locobean/servland.git"
},
"bugs": {
"url": "https://github.com/locobean/servland/issues"
},
"license": "MIT",
"keywords": [
"astro-theme",
"tailwindcss",
"business",
"landing-page",
"responsive",
"dark-mode"
],
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"format": "prettier --write .",
"lint": "eslint . --ext .js,.ts,.astro",
"lint:fix": "eslint . --ext .js,.ts,.astro --fix",
"clean": "rimraf dist .astro node_modules"
},
"dependencies": {
"@astrojs/tailwind": "^5.0.0",
"astro": "^4.0.0",
"tailwindcss": "^3.3.5"
},
"devDependencies": {
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"eslint-plugin-astro": "^0.29.0",
"prettier": "^3.0.0",
"prettier-plugin-astro": "^0.12.0",
"rimraf": "^5.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}