generated from Enzymii/my-turborepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.14 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
{
"name": "nyayaworks",
"version": "0.0.1",
"scripts": {
"prepare": "husky install",
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"start": "turbo run start",
"lint:fix": "turbo run lint -- --fix",
"lint:staged": "lint-staged",
"doc": "turbo run doc",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"commit": "git-cz"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@turbo/gen": "^1.9.7",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.32.0",
"eslint-config-custom": "workspace:*",
"husky": "^8.0.3",
"lint-staged": "^14.0.0",
"prettier": "^2.5.1",
"turbo": "latest"
},
"packageManager": "[email protected]",
"lint-staged": {
"packages/**/*.{ts,tsx}": [
"eslint --fix"
],
"apps/**/*.{ts,tsx}": [
"eslint --fix"
],
"*.{md, json}": [
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"dotenv": "^16.3.1"
}
}