-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 985 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
33
34
{
"name": "cms-sanity",
"version": "1.0.0",
"scripts": {
"dev": "next",
"build": "npm run build:sanity && pwd && npm run build:web",
"build:web": "next build",
"start:web": "next start",
"build:sanity": "cd studio && sanity build ../public/studio -y && cd ..",
"start:sanity": "cpy .env ./studio --rename .env.development && cd studio && sanity start",
"postinstall": "lerna bootstrap"
},
"dependencies": {
"@portabletext/react": "^1.0.1",
"@sanity/client": "^2.23.2",
"@sanity/image-url": "^1.0.1",
"classnames": "^2.3.1",
"cpy-cli": "^3.1.1",
"date-fns": "^2.28.0",
"next": "^12.0.9",
"next-sanity": "^0.4.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hook-form": "^7.25.3",
"swr": "^1.2.0"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^4.1.3",
"@sanity/cli": "^2.25.0",
"lerna": "^4.0.0",
"postcss-preset-env": "^7.3.0",
"tailwindcss": "^3.0.18"
}
}