generated from brckd/ts-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.02 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
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
{
"name": "@bricked/astro-template",
"private": true,
"description": "A template for Astro projects.",
"keywords": [
"astro-template"
],
"homepage": "https://github.com/brckd/astro-template#readme",
"bugs": {
"url": "https://github.com/brckd/astro-template/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brckd/astro-template.git"
},
"license": "MIT",
"author": "Bricked",
"type": "module",
"main": "dist/index.js",
"scripts": {
"astro": "astro",
"build": "astro build",
"dev": "astro dev",
"format": "npx sort-package-json && npx prettier --write . && npx eslint --fix --no-error-on-unmatched-pattern .",
"prepare": "npx husky install",
"preview": "astro preview",
"start": "astro dev"
},
"commitlint": {
"extends": "@commitlint/config-conventional"
},
"lint-staged": {
"!(*.ts|package.json)": "npx prettier --ignore-unknown --write",
"*.ts": [
"npx prettier --write",
"npx eslint --fix"
],
"package.json": [
"npx sort-package-json",
"npx prettier --write"
]
},
"prettier": "@bricked/prettier-config",
"eslintConfig": {
"extends": "@bricked"
},
"release": {
"dryRun": true,
"extends": "@bricked/semantic-release-config"
},
"dependencies": {
"astro": "^2.10.14",
"dotenv": "^16.3.1"
},
"devDependencies": {
"@bricked/eslint-config": "^1.0.0",
"@bricked/prettier-config": "^1.0.1",
"@bricked/semantic-release-config": "^1.1.0",
"@bricked/ts-config": "^1.2.3",
"@commitlint/config-conventional": "^17.6.5",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"commitlint": "^17.6.6",
"eslint": "^8.48.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.2",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"sort-package-json": "^2.4.1",
"typescript": "^5.2.2"
},
"publishConfig": {
"access": "public"
}
}