-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.33 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.33 KB
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
41
42
43
44
45
{
"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": "ajayimikeofficial@gmail.com",
"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"
},
"devDependencies": {
"autoprefixer": "^10.4.20",
"postcss": "^8.1.0",
"tailwindcss": "^3.4.1"
}
}