-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.75 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "scripts",
"type": "module",
"private": true,
"version": "0.0.0",
"description": "Scripts and configs for TrigenSoftware's projects.",
"author": "dangreen",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/TrigenSoftware/scripts.git"
},
"bugs": {
"url": "https://github.com/TrigenSoftware/scripts/issues"
},
"engines": {
"node": ">=14"
},
"scripts": {
"clear": "del './packages/*/dist' ./coverage ./node_modules/.cache",
"lint:package-json": "lint-package-json --monorepo",
"lint": "eslint '*.{js,cjs}' 'packages/**/*.{js,jsx,ts,tsx}'",
"test:unit": "vitest run",
"test:unit:watch": "vitest watch",
"test": "run -p lint test:unit",
"commit": "cz",
"version": "pnpm install && git add ./pnpm-lock.yaml",
"release": "lerna version",
"updateGitHooks": "simple-git-hooks"
},
"devDependencies": {
"@commitlint/cli": "^18.0.0",
"@commitlint/config-conventional": "^18.0.0",
"@commitlint/config-pnpm-scopes": "^18.0.0",
"@commitlint/cz-commitlint": "^18.0.0",
"@swc/core": "^1.2.119",
"@trigen/browserslist-config": "workspace:*",
"@trigen/eslint-config": "workspace:*",
"@trigen/lint-package-json": "workspace:*",
"@trigen/project-files": "workspace:*",
"@trigen/scripts": "workspace:*",
"@types/node": "^20.0.0",
"clean-publish": "^4.0.0",
"commitizen": "^4.2.4",
"del-cli": "^5.0.0",
"eslint": "^8.0.0",
"inquirer": "^8.0.0",
"lerna": "^4.0.0",
"nano-staged": "^0.8.0",
"npm-package-json-lint": "^7.0.0",
"simple-git-hooks": "^2.7.0",
"simple-github-release": "^1.0.0",
"typescript": "^5.0.0",
"vite": "^5.0.0",
"vitest": "^1.0.0"
},
"workspaces": [
"packages/*"
]
}