-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.77 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run clean && npm run compile && npm run test && npm run lint",
"clean": "rimraf --glob 'packages/*/lib' '**/tsconfig.tsbuildinfo'",
"compile": "node scripts/tsbuild.mjs scripts",
"download": "node --enable-source-maps packages/cfn-codegen/lib/cli/main.js download packages/cfn-resource-schemas-db/schemas --exit-code --changelog recent-changes.md",
"generate:cached": "node --enable-source-maps packages/cfn-codegen/lib/cli/main.js generate packages/cfn-resource-schemas-db/schemas --output-dir packages/cfn-resource-types/src --resource",
"generate:legacy": "node --enable-source-maps packages/cfn-codegen/lib/cli/main.js generate packages/cfn-resource-schemas-db/schemas --legacy --output-file packages/cfntypes/src/resources.generated.ts",
"lint": "npm run --workspaces --if-present lint",
"sync-versions": "node ./scripts/sync-workspace-versions.mjs",
"test": "node --enable-source-maps --test",
"watch:compile": "node scripts/tsbuild.mjs scripts -- -w",
"watch:test": "node --enable-source-maps --test --watch"
},
"devDependencies": {
"@npmcli/arborist": "^7.5.4",
"@npmcli/package-json": "^5.2.0",
"@swc-node/register": "^1.6.8",
"@types/glob": "^8.1.0",
"@types/json-pointer": "^1.0.34",
"@types/node": "^20.10.5",
"@types/npmcli__arborist": "^5.6.11",
"@types/npmcli__package-json": "^4.0.4",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"chalk": "^5.3.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.0.1",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"typescript": "^5.6.2"
}
}