-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.03 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
{
"name": "root",
"private": true,
"repository": "https://github.com/cenk1cenk2/docker-node-fnm",
"type": "module",
"scripts": {
"clean": "rimraf node_modules pnpm-lock.yaml",
"format": "turbo format",
"lint": "turbo lint",
"build": "turbo build"
},
"workspaces": [
"supervisor/"
],
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged",
"prepare-commit-msg": "[ -t 1 ] && exec < /dev/tty && git cz --hook || true"
},
"devDependencies": {
"@cenk1cenk2/cz-cc": "^1.8.0",
"@cenk1cenk2/eslint-config": "^2.7.59",
"@swc/core": "^1.9.1",
"@types/node": "^20.17.11",
"commitizen": "^4.3.1",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.31.0",
"lint-staged": "^15.3.0",
"rimraf": "^6.0.1",
"simple-git-hooks": "^2.11.1",
"ts-node": "^10.9.2",
"tsconfig-replace-paths": "^0.0.14",
"tsup": "^8.3.5",
"turbo": "^1.13.4",
"typescript": "^5.6.3"
},
"config": {
"commitizen": {
"path": "./node_modules/@cenk1cenk2/cz-cc"
}
}
}