forked from usebruno/bruno
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
31 lines (31 loc) · 1 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
{
"name": "usebruno",
"private": true,
"homepage": "https://usebruno.com",
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@jest/globals": "^29.2.0",
"@playwright/test": "^1.27.1",
"@types/jest": "^29.5.11",
"fs-extra": "^11.1.1",
"husky": "^8.0.3",
"jest": "^29.2.0",
"pretty-quick": "^4.0.0",
"randomstring": "^1.2.2",
"ts-jest": "^29.0.5",
"typescript": "^5.8.2",
"node-abi": "3.74.0"
},
"scripts": {
"dev": "pnpm run --parallel --recursive --if-present dev",
"prettier:web": "pnpm run --filter @usebruno/app prettier",
"electron": "pnpm run --filter bruno-lazer electron",
"build": "pnpm run --sort --recursive --if-present build",
"make": "node ./scripts/make.js",
"test:e2e": "npx playwright test",
"test:report": "npx playwright show-report",
"test:prettier:web": "npm run test:prettier --workspace=packages/bruno-app",
"clean": "pnpm run --parallel --recursive --if-present clean",
"prepare": "husky install"
}
}