-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
30 lines (30 loc) · 957 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
{
"name": "bicep-tools",
"private": true,
"packageManager": "[email protected]",
"workspaces": [
"packages/*"
],
"scripts": {
"build:all": "yarn workspaces foreach -A run build",
"format-check:all": "yarn run prettier --check .",
"format:all": "yarn run prettier --write .",
"lint:all": "yarn run eslint .",
"publish:all": "yarn workspace @radius-project/manifest-to-bicep-extension run version ${0} && yarn workspace @radius-project/manifest-to-bicep-extension run publish $PUBLISH_ARGS",
"test:all": "jest",
"test:ci": "jest --ci --reporters default --reporters github-actions"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@jest/globals": "^29.7.0",
"eslint": "^9.17.0",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
}
}