-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.32 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.32 KB
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
40
41
42
43
{
"private": true,
"license": "MIT",
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean",
"coverage": "turbo run coverage",
"cs": "changeset",
"depcheck": "turbo run depcheck",
"lint": "run-p lint:*",
"lint:repos": "turbo run lint",
"lint:root": "cross-env TIMING=1 eslint --ext=js,cjs,mjs,ts,tsx,ctx,mtx,yaml,yml .",
"nl": "pnpm --filter=./packages/node-library",
"nuke:root": "rimraf node_modules",
"nuke": "turbo run nuke && pnpm nuke:root",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"prepare": "husky install",
"release": "changeset publish",
"size": "turbo run size",
"test": "turbo run test",
"verify:repos": "turbo run lint build coverage depcheck size",
"verify": "run-p lint verify:repos",
"version": "changeset version"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"cross-env": "^7.0.3",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-harmony": "^7.1.2",
"eslint-plugin-yml": "~1.5.0",
"husky": "^8.0.3",
"npm-run-all": "^4.1.5",
"pinst": "^3.0.0",
"rimraf": "~5.0.0",
"turbo": "1.9.3",
"typescript": "^5.0.4"
},
"packageManager": "pnpm@8.3.1"
}