-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.21 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.21 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
{
"name": "@example/basics",
"type": "module",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"prepare": "husky install",
"test": "vitest"
},
"engines": {
"node": "16.19.0"
},
"dependencies": {
"@astrojs/react": "^2.0.2",
"@astrojs/tailwind": "^3.0.0",
"@astrojs/vue": "^2.0.1",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"astro": "^2.0.6",
"npm": "^9.4.1",
"tailwindcss": "^3.2.4",
"vue": "^3.2.47"
},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"@vue/test-utils": "^2.2.10",
"eslint": "8.33.0",
"husky": "^8.0.0",
"jsdom": "^21.1.0",
"lint-staged": "^13.1.0",
"prettier": "^2.8.3",
"prettier-plugin-tailwindcss": "^0.2.2",
"vitest": "^0.28.4"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --cache --fix",
"vitest related --run"
],
"*.{js,ts,css,md,astro,jsx,vue,svelte,json}": "prettier --write"
}
}