-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·33 lines (33 loc) · 912 Bytes
/
Copy pathpackage.json
File metadata and controls
executable file
·33 lines (33 loc) · 912 Bytes
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
{
"private": true,
"name": "createform",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --no-cache --continue",
"lint": "turbo run lint",
"clean": "turbo run clean && rm -rf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"prepare": "husky install",
"test": "turbo run test",
"commit": "git-cz"
},
"devDependencies": {
"eslint": "^8.29.0",
"eslint-config-createform": "workspace:*",
"prettier": "^2.8.0",
"turbo": "^2.1.3",
"@turbo-version/version": "0.5.7",
"@turbo-version/release": "0.5.7",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"commitizen": "^4.2.4",
"husky": "^8.0.0",
"cz-conventional-changelog": "^3.3.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"packageManager": "pnpm@9.0.6"
}