-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.15 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 3.15 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "bun-starter",
"module": "server.ts",
"type": "module",
"version": "0.0.1",
"description": "A starter template for Bun.js is a JavaScript runtime, bundler, toolkit.",
"scripts": {
"dev": "bun --hot --watch server.ts",
"hot": "bun --hot server.ts",
"start": "bun run server.ts",
"watch": "bun --watch server.ts",
"lint": "eslint",
"format": "eslint --fix && prettier . --write",
"check-secret": "node .husky/check-secret.js",
"check-types": "tsc --noEmit --pretty",
"commit": "bun run format && git add . && cz && git merge origin/main -m \"chore(PR): Merged from origin/main\" --no-ff && git push origin && exit 0",
"prepare": "husky",
"set-permission": "run-script-os",
"set-permission:win32": "",
"set-permission:darwin:linux": "chmod -R +x ./.husky",
"set-permission:default": "chmod -R +x ./.husky"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"release": {
"branches": [
"main",
{
"name": "dev",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/git",
[
"@semantic-release/github",
{
"successComment": false,
"failTitle": false
}
]
]
},
"devDependencies": {
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"@commitlint/cz-commitlint": "^21.0.2",
"@eslint/js": "^10.0.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.0",
"@types/ejs": "^3.1.5",
"@types/eslint": "^9.6.0",
"@types/lodash": "^4.17.4",
"@types/node": "^26.1.0",
"@types/prettier": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.3.0",
"bun-types": "latest",
"chalk": "^6.0.0",
"commitizen": "^4.3.0",
"cross-env": "^10.0.0",
"eslint": "10.x",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^10.0.1",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^14.0.0",
"eslint-plugin-unused-imports": "^4.0.0",
"globals": "^17.0.0",
"husky": "^9.0.11",
"lint-staged": "^17.0.7",
"prettier": "^3.2.5",
"run-script-os": "^1.1.6",
"semantic-release": "^25.0.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tslint-config-prettier": "^1.18.0",
"typescript-eslint": "^8.0.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"axios": "^1.5.0",
"dayjs": "^1.11.11",
"diginext-utils": "^4.1.2",
"dotenv": "^17.2.1",
"ejs": "^6.0.1",
"form-data": "^4.0.0",
"lodash": "^4.17.21",
"rimraf": "^6.0.1",
"typescript": "^7.0.2",
"zod": "^4.0.14"
}
}