-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 887 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 887 Bytes
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
{
"name": "gba-portfolio",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"check": "astro check",
"format": "prettier --write .",
"format:check": "prettier --check .",
"astro": "astro",
"test:unit": "vitest run",
"test:e2e": "playwright test",
"test": "npm run test:unit && npm run test:e2e",
"prepare": "husky"
},
"dependencies": {
"astro": "^6.0.1"
},
"devDependencies": {
"@astrojs/check": "^0.9.7",
"@playwright/test": "^1.58.2",
"@types/node": "^25.4.0",
"husky": "^9.1.7",
"jsdom": "^27.0.1",
"lint-staged": "^16.4.0",
"prettier": "^3.8.3",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"lint-staged": {
"*.{ts,astro,css,md,json}": [
"prettier --write"
]
}
}