-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
32 lines (32 loc) · 999 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
31
32
{
"name": "fresh-eyes-monorepo",
"version": "1.0.0",
"description": "",
"scripts": {
"build:all": "pnpm copy:shared && pnpm build:chrome && pnpm build:firefox",
"build:chrome": "pnpm copy:shared && pnpm -C packages/chrome build",
"build:firefox": "pnpm copy:shared && pnpm -C packages/firefox build",
"copy:shared": "cp -R packages/shared/* packages/firefox/src && cp -R packages/shared/* packages/chrome/src",
"prepare": "husky install",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "GNU General Public License",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"husky": "^8.0.0",
"lint-staged": "^13.2.3",
"prettier": "3.0.1"
},
"pnpm": {
"overrides": {
"cross-spawn": "^7.0.5",
"braces": "^3.0.3",
"micromatch": "^4.0.8"
}
}
}