-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 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
{
"name": "simple-builder",
"private": true,
"engines": {
"node": ">=18.0.0",
"pnpm": "^9.0.0"
},
"scripts": {
"build": "turbo run build --filter=@simple-builder/*",
"dev": "turbo run dev",
"lint": "turbo run lint",
"lint-fix": "turbo lint -- --fix && manypkg fix && pnpm format:write",
"format": "prettier \"**/*\" --ignore-unknown",
"format:write": "pnpm format --write --list-different",
"clean": "turbo run clean && git clean -xdf node_modules",
"release": "turbo run build --filter=@simple-builder/* && changeset publish"
},
"dependencies": {
"@changesets/cli": "^2.27.1",
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@manypkg/cli": "^0.21.2",
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-turbo": "^1.11.3",
"prettier": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.5.11",
"turbo": "^1.11.3"
}
}