-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 995 Bytes
/
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
{
"name": "forms",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"prepare": "awesome init",
"format:run": "yarn ts-node scripts/run-format.ts",
"format:check": "yarn ts-node scripts/check-format.ts"
},
"devDependencies": {
"@ascen/awesome": "^1.2.0",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"glob": "^10.4.3",
"lint-staged": "^15.2.7",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.6.5",
"ts-node": "^10.9.2",
"turbo": "^2.0.4",
"typescript": "^5.5.2"
},
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]",
"workspaces": [
"apps/*",
"packages/*"
],
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}