-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.29 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
{
"name": "postcss-go.github.io",
"private": true,
"type": "module",
"packageManager": "pnpm@9.12.3",
"engines": {
"node": ">=22",
"pnpm": ">=9.12.3"
},
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier . --write",
"format:check": "prettier . --check",
"test": "vitest run",
"prepare": "husky"
},
"lint-staged": {
"*.{js,mjs,cjs,ts,astro}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml,css}": "prettier --write"
},
"dependencies": {
"@postcss-go/core": "^0.0.5",
"@tailwindcss/vite": "^4.3.3",
"astro": "^7.2.10",
"autoprefixer": "^10.5.4",
"monaco-editor": "^0.56.0",
"postcss": "^8.5.26",
"postcss-nested": "^8.0.1",
"source-map-js": "1.2.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.9.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-astro": "^3.1.0",
"globals": "^17.11.0",
"husky": "^9.1.7",
"lint-staged": "^17.4.1",
"prettier": "^3.8.4",
"prettier-plugin-astro": "^0.14.1",
"tailwindcss": "^4.3.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.69.0",
"vitest": "^4.1.11"
}
}