generated from boneskull/boneskull-template
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
103 lines (103 loc) · 3.29 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "midnight-smoker-monorepo",
"version": "0.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/boneskull/midnight-smoker.git"
},
"homepage": "https://github.com/boneskull/midnight-smoker",
"bugs": {
"url": "https://github.com/boneskull/midnight-smoker/issues"
},
"author": "Christopher Hiller <[email protected]> (https://boneskull.com/)",
"license": "Apache-2.0",
"private": true,
"workspaces": [
"packages/*"
],
"engines": {
"node": "^18.0.0 || ^20.0.0",
"npm": ">=8.6.0"
},
"scripts": {
"build": "tsc -b",
"clean": "tsc -b --clean",
"dev": "tsc -b --watch",
"dev:docs": "npx docsify-cli serve docs",
"docs:build": "shx cp ./packages/midnight-smoker/README.md ./docs/README.md",
"husky-install": "husky install",
"lint": "npm run --workspaces --if-present lint",
"lint:commit": "commitlint",
"lint:deps": "depcruise -c ./.config/dependency-cruiser.js packages",
"lint:eslint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:md": "markdownlint-cli2 \"**/*.md\"",
"lint:staged": "lint-staged",
"prepare": "run-p husky-install rebuild",
"pretest:e2e": "run-s build",
"rebuild": "run-s clean build",
"test": "npm test --workspaces --if-present",
"test:ci": "npm run --workspaces --if-present test:ci",
"test:e2e": "npm run --workspaces --if-present test:e2e",
"test:smoke": "npm run --workspaces --if-present test:smoke",
"test:unit": "npm run --workspaces --if-present test:unit",
"test:update-snapshots": "npm run --workspaces --if-present test:update-snapshots",
"update-schema": "npm run --workspace midnight-smoker update-schema"
},
"devDependencies": {
"@commitlint/cli": "17.8.1",
"@commitlint/config-conventional": "17.8.1",
"@tsconfig/node16": "16.1.1",
"@types/mocha": "10.0.6",
"@types/node": "20.10.5",
"@types/sinon": "17.0.2",
"@types/source-map-support": "0.5.10",
"@typescript-eslint/eslint-plugin": "6.14.0",
"@typescript-eslint/parser": "6.14.0",
"cross-env": "7.0.3",
"dependency-cruiser": "15.5.0",
"eslint": "8.55.0",
"eslint-config-prettier": "8.10.0",
"eslint-config-semistandard": "17.0.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-n": "15.7.0",
"eslint-plugin-promise": "6.1.1",
"husky": "8.0.3",
"lint-staged": "14.0.1",
"markdownlint-cli2": "0.11.0",
"markdownlint-cli2-formatter-pretty": "0.0.5",
"mocha": "10.2.0",
"npm-run-all": "4.1.5",
"prettier": "3.1.1",
"prettier-plugin-jsdoc": "1.1.1",
"prettier-plugin-organize-imports": "3.2.4",
"prettier-plugin-pkg": "0.18.0",
"rewiremock": "3.14.5",
"shx": "0.3.4",
"sinon": "16.1.3",
"snap-shot-it": "7.9.10",
"ts-node": "10.9.2",
"typedoc": "0.25.4",
"typedoc-plugin-zod": "1.1.0",
"typescript": "5.2.2",
"unexpected": "13.2.1",
"unexpected-sinon": "11.1.0"
},
"overrides": {
"debug": "4.3.4",
"type-fest": "4.8.3"
},
"prettier": {
"bracketSpacing": false,
"endOfLine": "auto",
"singleQuote": true,
"plugins": [
"prettier-plugin-organize-imports",
"prettier-plugin-pkg",
"prettier-plugin-jsdoc"
],
"jsdocCommentLineStrategy": "multiline",
"tsdoc": true
}
}