-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 872 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 872 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
{
"name": "utils",
"version": "1.0.0",
"private": true,
"scripts": {
"clean": "rm -rf node_modules .turbo && pnpm -r exec rm -rf node_modules .turbo",
"dev": "turbo run dev --parallel",
"build": "turbo run build --parallel",
"lint": "turbo run lint",
"test": "turbo run test",
"ncu": "ncu && pnpm -r exec ncu",
"ncu:u": "ncu -u && pnpm -r exec ncu -u",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,md,css}\"",
"changeset": "changeset",
"release": "changeset publish"
},
"devDependencies": {
"@changesets/cli": "2.26.0",
"@mjeightyfive/eslint-config": "workspace:*",
"@mjeightyfive/prettier-config": "workspace:*",
"npm-check-updates": "16.7.4",
"prettier": "^2.8.4",
"turbo": "1.7.4"
},
"engines": {
"pnpm": ">=7.0.0",
"node": ">=16.0.0"
},
"packageManager": "pnpm@7.13.2"
}