-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.21 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
37
38
39
40
{
"name": "extrascan",
"version": "1.0.0",
"description": "monorepo for extrascan",
"scripts": {
"build:shared": "pnpm --filter shared run build",
"dev:shared": "pnpm --filter shared run dev",
"dev:webapp": "pnpm --filter webapp run dev",
"build:webapp": "pnpm --filter webapp run build",
"start:webapp": "pnpm --filter webapp run start",
"dev:extension": "pnpm --filter extension run dev",
"build:extension": "pnpm --filter extension run build",
"lint": "pnpm -r lint",
"format": "prettier --write .",
"build": "pnpm -r build",
"clean": "pnpm -r clean",
"prepare": "husky"
},
"keywords": [],
"author": "[email protected]",
"license": "ISC",
"prettier": {
"singleQuote": false,
"trailingComma": "es5",
"printWidth": 120,
"tabWidth": 4,
"semi": true
},
"engines": {
"node": ">=20.12.0",
"pnpm": ">=9.14.0",
"yarn": "please-use-pnpm",
"npm": "please-use-pnpm"
},
"dependencies": {
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"husky": "^9.1.4"
}
}