-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.17 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
{
"name": "@bottech/pulumix-root",
"private": true,
"devDependencies": {
"@types/node": "^20.4.1",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-workspaces": "^0.9.0",
"npm-check-updates": "^16.10.15",
"prettier": "^3.0.0",
"ts-morph": "^22.0.0",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.7",
"typescript": "^5.1.6"
},
"scripts": {
"build": "tsc --build && npx --workspaces tsc-alias",
"watch": "npm run watch --workspaces",
"check": "npm run check --workspaces",
"clean": "npm run clean --workspaces",
"fix": "npx eslint . --ext .js,.jsx,.ts,.tsx,.html,.vue --fix",
"link": "npm link --workspaces && rm -rf node_modules/@pulumi",
"lint": "npx eslint . --ext .js,.jsx,.ts,.tsx,.html,.vue",
"test": "npm run test --workspaces",
"upgrade": "npm-check-updates --upgrade --workspaces --root && npm update"
},
"workspaces": [
"packages/pulumix",
"packages/pulumix-aws"
]
}