-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.02 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
{
"name": "onlyhabits",
"private": true,
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"start": "turbo start",
"test": "turbo run test",
"test.e2e": "turbo run test.e2e",
"test.cov": "turbo run test.cov",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@total-typescript/ts-reset": "^0.4.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.32.0",
"eslint-config-next": "13.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-turbo": "latest",
"eslint-plugin-react": "7.31.8",
"husky": "^8.0.3",
"prettier": "latest",
"prettier-plugin-tailwindcss": "^0.2.8",
"turbo": "latest"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "pnpm@7.26.3",
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}