forked from FormidableLabs/nextjs-sanity-fe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.47 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": "next-sanity-fastly-ecomm-demo",
"version": "0.0.1",
"description": "A demo ecommerce site using Next.js, Sanity CMS, and Fastly.",
"keywords": [],
"author": "Formidable",
"main": "index.js",
"license": "MIT",
"scripts": {
"local": "pnpm run --filter nextjs --filter sanity --parallel dev",
"dev:nextjs": "pnpm run --filter nextjs dev",
"build:nextjs": "pnpm run --filter nextjs build",
"start:nextjs": "pnpm run --filter nextjs start",
"codegen:nextjs": "pnpm run --filter nextjs codegen",
"dev:sanity": "pnpm run --filter sanity -C packages/sanity dev",
"build:sanity": "pnpm run --filter sanity build",
"deploy-sanity-studio": "pnpm run -C packages/sanity --filter sanity deploy-studio",
"deploy-sanity-graphql": "pnpm run -C packages/sanity --filter sanity deploy-graphql",
"init-sanity": "pnpm run -C packages/sanity --filter sanity init",
"seed-sanity": "pnpm run -C packages/sanity --filter sanity import-dataset",
"prepare": "husky install",
"lint": "pnpm run --parallel lint",
"typecheck": "pnpm run --parallel typecheck"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"typescript": "4.8.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css,md,json}": [
"prettier --write"
]
}
}