-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 810 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 810 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
29
{
"name": "landver",
"version": "1.0.0",
"description": "",
"main": "index.js",
"private": true,
"workspaces": [
"client",
"landing_page"
],
"scripts": {
"prepare": "husky install",
"build": "pnpm --filter landver-client... build && pnpm --filter landing_page... build",
"client": "pnpm --filter landver-client dev",
"landing": "pnpm --filter landing_page dev"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"eslint": "^8.57.1",
"husky": "^9.1.7",
"lint-staged": "^15.5.0"
},
"lint-staged": {
"**/*.{js,ts,tsx}": "pnpm exec eslint --fix"
},
"packageManager": "pnpm@10.7.0+sha512.6b865ad4b62a1d9842b61d674a393903b871d9244954f652b8842c2b553c72176b278f64c463e52d40fff8aba385c235c8c9ecf5cc7de4fd78b8bb6d49633ab6"
}