This repository has been archived by the owner on Apr 13, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.05 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@local/tools",
"private": true,
"type": "module",
"version": "2.2.0",
"description": "A collection of node packages for common Typescript, Nodejs, and package deployment problems.",
"scripts": {
"rebuild": "npm run clean:build && npm run build && lerna bootstrap",
"clean:build": "rimraf packages/*/app/**/* **/tsconfig.tsbuildinfo",
"clean:deps": "rimraf **/node_modules",
"clean:all": "npm run clean:build && npm run clean:deps",
"build": "tsc -b && lerna run build",
"watch": "tsc -b -w",
"test": "npm run build && lerna run test",
"lint": "eslint --fix --cache --quiet --ext ts .",
"prettier": "prettier **/*.ts -w",
"preversion": "npm run _require-ci",
"_require-ci": "[ \"${GITHUB_ACTIONS}\" = \"true\" ] || exit 1",
"prepare": "husky install"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/fs-extra": "^9.0.13",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.17",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"chai": "^4.3.6",
"eslint": "^8.9.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-tsdoc": "^0.2.14",
"fs-extra": "^10.0.0",
"husky": "^7.0.4",
"lerna": "^4.0.0",
"lint-staged": "^12.3.4",
"mocha": "^9.2.0",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"typescript": "^4.5.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bscotch/tools.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/bscotch/tools/issues"
},
"homepage": "https://github.com/bscotch/tools#readme",
"prettier": {
"$id": "prettier",
"$schema": "http://json.schemastore.org/prettierrc",
"trailingComma": "all",
"bracketSpacing": true,
"tabWidth": 2,
"semi": true,
"singleQuote": true
},
"volta": {
"node": "16.13.1"
},
"workspaces": [
"packages/*"
],
"lint-staged": {
"*": [
"npx prettier -w -u"
],
"*.ts": [
"npx eslint --fix --cache --quiet --ext ts"
]
}
}