-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 4.04 KB
/
Copy pathpackage.json
File metadata and controls
129 lines (129 loc) · 4.04 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
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "@powerlines/monorepo",
"version": "0.0.1",
"type": "module",
"description": "🔌 The \"framework framework\" that simplifies modern dev tool usage, generates virtual (or actual) code modules, and improves DX across the board.",
"repository": {
"type": "github",
"url": "https://github.com/storm-software/powerlines.git"
},
"homepage": "https://stormsoftware.com",
"bugs": {
"url": "https://stormsoftware.com/support",
"email": "support@stormsoftware.com"
},
"author": {
"name": "Storm Software",
"email": "contact@stormsoftware.com",
"url": "https://stormsoftware.com"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/storm-software"
},
"license": "Apache-2.0",
"private": true,
"packageManager": "pnpm@11.9.0",
"engines": {
"node": ">=24.16.0",
"pnpm": ">=11.9.0"
},
"keywords": [
"storm-software",
"powerlines",
"sullivanpj"
],
"scripts": {
"adr": "pnpm log4brains adr new",
"adr-preview": "pnpm log4brains preview",
"bootstrap": "pnpm exec zx tools/scripts/src/bootstrap.mjs",
"build": "pnpm exec zx tools/scripts/src/build.mjs --prod",
"build-dev": "pnpm exec zx tools/scripts/src/build.mjs --dev",
"clean": "pnpm exec zx tools/scripts/src/clean.mjs",
"commit": "pnpm exec storm-git commit",
"dep-graph": "nx dep-graph",
"e2e": "nx e2e",
"format": "pnpm exec zx tools/scripts/src/format.mjs",
"graph": "nx graph",
"help": "nx help",
"lint": "pnpm exec zx tools/scripts/src/lint.mjs",
"local-registry": "nx local-registry monorepo",
"nuke": "pnpm exec zx tools/scripts/src/nuke.mjs",
"nx": "nx",
"postinstall": "pnpm bootstrap",
"push": "git push origin main:main",
"release": "pnpm exec zx tools/scripts/src/release.mjs",
"sheriff": "pnpm exec sheriff -f -i typescript -i react -i react-dom",
"start": "nx serve",
"update-storm": "pnpm exec zx tools/scripts/src/update-storm.mjs",
"view-config": "pnpm exec storm-config"
},
"devDependencies": {
"@arethetypeswrong/core": "catalog:",
"@ls-lint/ls-lint": "catalog:",
"@nx/eslint-plugin": "catalog:",
"@nx/js": "catalog:",
"@nx/plugin": "catalog:",
"@nx/vite": "catalog:",
"@nx/vitest": "catalog:",
"@nx/workspace": "catalog:",
"@shell-shock/nx": "catalog:",
"@storm-software/config": "catalog:",
"@storm-software/config-tools": "catalog:",
"@storm-software/cspell": "catalog:",
"@storm-software/eslint": "catalog:",
"@storm-software/eslint-plugin-tsdoc": "catalog:",
"@storm-software/git-tools": "catalog:",
"@storm-software/linting-tools": "catalog:",
"@storm-software/markdownlint": "catalog:",
"@storm-software/pnpm-tools": "catalog:",
"@storm-software/prettier": "catalog:",
"@storm-software/testing-tools": "catalog:",
"@storm-software/tsconfig": "catalog:",
"@storm-software/untyped": "catalog:",
"@storm-software/workspace-tools": "catalog:",
"@swc-node/register": "catalog:",
"@swc/core": "catalog:",
"@swc/helpers": "catalog:",
"@taplo/cli": "catalog:",
"@types/babel-plugin-macros": "catalog:",
"@types/node": "catalog:",
"@vitest/coverage-v8": "catalog:",
"copyfiles": "catalog:",
"eslint": "catalog:",
"lefthook": "catalog:",
"log4brains": "catalog:",
"nx": "catalog:",
"prettier": "catalog:",
"publint": "catalog:",
"rimraf": "catalog:",
"sherif": "catalog:",
"tslib": "catalog:",
"typescript": "^6.0.3",
"verdaccio": "catalog:",
"vite": "catalog:",
"vitest": "catalog:",
"zx": "catalog:"
},
"manypkg": {
"defaultBranch": "main",
"workspaceProtocol": "require"
},
"namespace": "@powerlines",
"nx": {
"includedScripts": [
"lint-knip",
"lint-sheriff",
"lint-ls",
"lint",
"format-readme",
"format-prettier",
"format-toml",
"format-sheriff",
"commit",
"release"
]
},
"prettier": "@storm-software/prettier/recommended.json",
"triggerEmptyDevReleaseByIncrementingThisNumber": 0
}