-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.93 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
{
"name": "mvp-web-kit",
"author": {
"name": "Batur",
"email": "[email protected]"
},
"description": "MVP Web Kit with Astro, React, Tailwind, Firebase, and more.",
"license": "MIT",
"type": "module",
"version": "0.2.1",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"build:local": "NODE_ENV='development' astro build",
"preview": "astro preview",
"preview:local": "NODE_ENV='development' astro preview",
"astro": "astro",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test:unit": "vitest",
"test:unit:ci": "vitest run",
"test:unit:cov": "vitest run --coverage",
"release": "standard-version"
},
"dependencies": {
"@astrojs/mdx": "^1.0.3",
"@astrojs/node": "^6.0.0",
"@astrojs/partytown": "^2.0.0",
"@astrojs/prefetch": "^0.4.0",
"@astrojs/react": "^3.0.2",
"@astrojs/sitemap": "^3.0.0",
"@astrojs/tailwind": "^5.0.0",
"@astrojs/vercel": "^4.0.5",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"astro": "^3.0.13",
"daisyui": "^3.7.4",
"firebase": "^10.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwind": "^4.0.0",
"tailwindcss": "^3.0.24",
"zustand": "^4.4.1"
},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"@vitest/coverage-istanbul": "^0.28.2",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-astro": "^0.23.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"prettier": "^2.8.3",
"prettier-plugin-astro": "^0.7.2",
"sass": "^1.57.1",
"standard-version": "^9.5.0",
"vitest": "^0.28.2"
}
}