-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.34 KB
/
package.json
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
{
"name": "tenprinciples.design",
"version": "0.0.1",
"private": true,
"scripts": {
"precommit": "lint-staged",
"commit": "git-cz",
"dev": "run-p dev:*",
"dev:astro": "astro dev",
"dev:css": "pnpm tailwind --watch",
"start": "astro dev",
"build": "run-s build:css build:astro",
"build:astro": "astro build",
"build:css": "pnpm tailwind --minify",
"tailwind": "tailwindcss -i ./src/styles/input.css -o ./src/styles/output.css",
"preinstall": "npx only-allow pnpm && corepack enable",
"postinstall": "[[ \"$CI\" != 'true' ]] && husky install || echo 'Skipping husky install'",
"preview": "astro preview",
"astro": "astro"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
"astro": "^2.3.0"
},
"devDependencies": {
"@commitlint/cli": "17.6.1",
"@commitlint/config-conventional": "17.6.1",
"commitizen": "4.3.0",
"cz-conventional-changelog": "3.3.0",
"husky": "8.0.3",
"lint-staged": "13.2.1",
"npm-run-all": "4.1.5",
"prettier": "2.8.7",
"prettier-plugin-astro": "^0.8.0",
"prettier-plugin-packagejson": "^2.4.3",
"prettier-plugin-tailwindcss": "^0.2.7",
"tailwindcss": "3.3.1",
"typescript": "5.0.4"
},
"packageManager": "pnpm@8.1.0",
"engines": {
"node": "18",
"pnpm": "8"
}
}