-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
31 lines (31 loc) · 979 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
{
"name": "scaffold-vara",
"version": "0.0.1",
"private": true,
"workspaces": [
"packages/vara",
"packages/nextjs"
],
"scripts": {
"postinstall": "husky install",
"precommit": "lint-staged",
"format": "yarn next:format",
"start": "yarn workspace @scaffold/nextjs dev",
"next:lint": "yarn workspace @scaffold/nextjs lint",
"next:format": "yarn workspace @scaffold/nextjs format",
"next:check-types": "yarn workspace @scaffold/nextjs check-types",
"next:build": "yarn workspace @scaffold/nextjs build",
"next:serve": "yarn workspace @scaffold/nextjs serve",
"vercel": "yarn workspace @scaffold/nextjs vercel",
"vercel:yolo": "yarn workspace @scaffold/nextjs vercel:yolo",
"build:vara": "yarn workspace @scaffold/vara build",
"test:vara": "yarn workspace @scaffold/vara test"
},
"devDependencies": {
"husky": "^8.0.1",
"lint-staged": "^13.0.3"
},
"dependencies": {
"yarn": "^1.22.17"
}
}