-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
42 lines (42 loc) · 1.32 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
{
"name": "@pixiebrix/source",
"version": "1.0.0",
"description": "PixieBrix monorepo source code package",
"workspaces": [
"applications/*",
"libraries/*"
],
"scripts": {
"test": "nx run-many -t test",
"test:ci": "nx run-many -t test:ci",
"lint": "nx run-many -t lint",
"build": "nx build",
"typecheck": "nx typecheck",
"dead-code": "npm run dead-code:base -- --include files,duplicates,dependencies,classMembers,binaries,enumMembers,nsTypes,exports,nsExports",
"dead-code:base": "knip --config knip.mjs --tags=-knip",
"dead-code:prod": "npm run dead-code -- --production",
"watch": "concurrently npm:watch:webpack npm:watch:typescript -r",
"watch:typescript": "tsc --build --watch --preserveWatchOutput",
"watch:webpack": "npm run watch:webpack --workspaces"
},
"author": "Todd Schiller",
"license": "AGPL-3.0",
"repository": "https://github.com/pixiebrix/pixiebrix-extension",
"engine-strict": true,
"engines": {
"node": "20.12.0",
"npm": "10.5.0"
},
"devDependencies": {
"@nx/js": "^20.1.0",
"@sindresorhus/tsconfig": "^6.0.0",
"@swc-node/register": "~1.9.1",
"@swc/core": "~1.5.7",
"@swc/helpers": "~0.5.11",
"concurrently": "^9.1.0",
"knip": "^5.36.7",
"nx": "20.1.0",
"prettier": "3.3.3",
"typescript": "^5.6.3"
}
}