-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.23 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.23 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "simonlowes",
"version": "1.0.0",
"description": "https://simonlowes.com",
"type": "module",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"dev": "tinacms dev -c \"astro dev\"",
"dev:astro": "astro dev",
"build": "tinacms build && astro build",
"build:astro": "astro build",
"preview": "astro preview",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:css": "stylelint \"**/*.css\"",
"lint:css:fix": "stylelint \"**/*.css\" --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@astrojs/mdx": "^4.3.14",
"@astrojs/sitemap": "^3.7.2",
"@playwright/test": "^1.59.1",
"@tinacms/cli": "^2.2.2",
"@types/three": "^0.183.1",
"@typescript-eslint/parser": "^8.59.0",
"@vitest/ui": "^4.1.4",
"astro": "^5.18.1",
"axe-core": "^4.11.3",
"dotenv": "^17.4.2",
"eslint": "^9.39.4",
"eslint-plugin-astro": "^1.7.0",
"happy-dom": "^20.9.0",
"husky": "^9.1.7",
"jsdom": "^29.0.2",
"lint-staged": "^16.4.0",
"prettier": "^3.8.3",
"prettier-plugin-astro": "^0.14.1",
"stylelint": "^17.8.0",
"stylelint-config-standard": "^40.0.0",
"vitest": "^4.0.16",
"vitest-axe": "^0.1.0"
},
"dependencies": {
"@astrojs/rss": "^4.0.18",
"@vite-pwa/astro": "^1.2.0",
"gsap": "^3.15.0",
"postprocessing": "^6.39.1",
"three": "^0.183.2",
"tinacms": "^3.6.1"
},
"lint-staged": {
"*.{js,ts,astro}": [
"eslint --fix",
"prettier --write"
],
"*.css": [
"stylelint --fix",
"prettier --write"
],
"*.{md,json}": [
"prettier --write"
]
},
"overrides": {
"diff": "^8.0.3",
"dompurify": "^3.3.1",
"react-router": "^6.30.3",
"esbuild": "^0.25.0",
"serialize-javascript": "^7.0.3",
"fast-xml-parser": "^5.5.7",
"flatted": "^3.4.2",
"lodash": "^4.18.1",
"vite": "^6.4.2"
}
}