-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 1.18 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
{
"name": "antkaya-iklimlendirme",
"version": "1.0.0",
"description": "Website project prepared for air conditioning service.",
"author": {
"name": "Ahmet Çetinkaya",
"email": "contact@ahmetcetinkaya.me",
"url": "https://ahmetcetinkaya.me"
},
"type": "module",
"scripts": {
"build": "bun prepare-content && cd src/presentation && bun run build",
"clean": "find src/presentation/src/content/* ! -name 'config.ts' -delete && rm -rf src/presentation/dist",
"format": "(prettier --write . \"!src/presentation/**/*\" \"!src/core/**/*\") && (cd src/presentation && bun format)",
"install-all": "bun install && find . -name 'package.json' ! -path '*/node_modules/*' -execdir bun install \\;",
"prepare-content": "find src/presentation/src/content/* ! -name 'config.ts' -delete && cp -r src/domain/content/* src/presentation/src/content/",
"start": "(cd src/presentation && bun start)"
},
"devDependencies": {
"@types/bun": "latest",
"prettier": "^3.4.2",
"prettier-plugin-jsdoc": "^1.3.0",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-packagejson": "^2.5.6"
},
"peerDependencies": {
"typescript": "^5.7.2"
}
}