-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.09 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.09 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
{
"name": "threadmark-landing",
"type": "module",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"check": "astro check",
"typecheck": "astro check",
"clean": "rm -rf dist .astro",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "playwright test",
"test:install": "playwright install --with-deps chromium",
"prepare": "husky"
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"astro": "^5.17.1",
"typescript": "^5.7.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.50.1",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-astro": "^1.6.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^17.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"typescript-eslint": "^8.56.1"
}
}