-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 969 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 969 Bytes
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
{
"name": "@playwright-power-platform/root",
"version": "0.0.4",
"private": true,
"author": "Deepak Kamboj <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/deepakkamboj/playwright-power-platform.git"
},
"scripts": {
"build": "node common/scripts/install-run-rush.js build",
"change": "node common/scripts/install-run-rush.js change",
"lint": "node common/scripts/install-run-rush.js lint",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md,yml,yaml}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md,yml,yaml}\"",
"rebuild": "node common/scripts/install-run-rush.js rebuild",
"update": "node common/scripts/install-run-rush.js update",
"prepare": "husky"
},
"devDependencies": {
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"prettier": "^3.7.4"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,md,yml,yaml}": "prettier --write"
}
}