forked from awboost/cfntypes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1010 Bytes
/
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
{
"type": "module",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run clean && npm run generate && npm run compile",
"clean": "rimraf --glob '**/*.tsbuildinfo' 'packages/*/lib'",
"compile": "node tsbuild.js",
"generate": "npm start -w packages/generate -- ../cfntypes/src/resources.generated.ts",
"lint": "npm run --workspaces --if-present lint",
"watch:compile": "node tsbuild.js -w"
},
"devDependencies": {
"@awboost/cfnspec": "^0.3.6",
"@swc-node/register": "^1.6.7",
"@types/debug": "^4.1.8",
"@types/node": "^16.18.50",
"@types/semver": "^7.5.2",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"debug": "^4.3.4",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.0",
"glob": "^10.3.4",
"prettier": "^3.0.3",
"semver": "^7.5.4",
"typescript": "^5.2.2"
}
}