forked from sanity-io/sanity-template-nextjs-vercel-basic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.35 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
{
"name": "simple-site",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently -n \"web,sanity\" -c \"green,blue\" \"next\" \"cd studio && SANITY_ACTIVE_ENV=development sanity start\"",
"build": "echo 'Building Sanity to public/studio…' && cd studio && sanity build ../public/studio -y && cd .. && next build",
"start": "vercel dev",
"postinstall": "lerna bootstrap"
},
"dependencies": {
"autoprefixer": "^10.2.5",
"lerna": "^4.0.0",
"next": "10.2.0",
"next-sanity": "^0.2.0",
"next-sanity-extra": "^0.2.3",
"next-seo": "^4.24.0",
"postcss": "^8.2.15",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-json-pretty": "^2.2.0",
"sanity-react-extra": "^0.2.4",
"tailwindcss": "^2.1.2"
},
"devDependencies": {
"@sanity/cli": "^2.10.0",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"concurrently": "^6.1.0",
"eslint": "^7.26.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"typescript": "^4.2.4"
}
}