-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.23 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
{
"name": "@oneayah.id/threads",
"version": "0.0.1",
"private": true,
"type": "module",
"module": "src/threads.ts",
"scripts": {
"prepare": "husky install",
"start": "bun src/threads.ts",
"collect:surah": "cp -r modules/quran-kemenag/data/* data/surah",
"collect:tafsir": "cp -r modules/tafsir/data/* data/tafsir",
"format": "prettier --write .",
"commit": "git-cz"
},
"prettier": {
"trailingComma": "es5",
"semi": false,
"singleQuote": true,
"useTabs": false,
"quoteProps": "consistent",
"bracketSpacing": true,
"arrowParens": "always",
"printWidth": 100
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "bun format && git add --all",
"prepare-commit-msg": "exec < /dev/tty && npx cz --hook || true"
}
},
"devDependencies": {
"bun-types": "^0.6.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.3",
"prettier": "^3.0.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@poppinss/cliui": "^3.0.5",
"axios": "^1.4.0",
"dotenv": "^16.3.1",
"mrmime": "^1.0.1",
"uuid": "^9.0.0"
}
}