-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.25 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
{
"name": "regen-sanity",
"private": true,
"version": "1.0.0",
"description": "Regen Sanity Studio",
"main": "package.json",
"author": "Marie Gauthier <[email protected]>",
"license": "UNLICENSED",
"scripts": {
"start": "sanity start",
"build": "sanity build",
"dev": "sanity dev",
"prettier": "prettier --write '**/*.js'",
"deploy-graphql:staging": "sanity graphql deploy --playground --dataset staging",
"deploy-graphql:production": "sanity graphql deploy --playground --dataset production",
"import-production": "sanity dataset export production production.tar.gz && sanity dataset import production.tar.gz staging --replace && rm production.tar.gz",
"create-documents": "sanity exec scripts/create-documents.js --",
"patch-document": "sanity exec scripts/patch-document.js --"
},
"keywords": [
"sanity"
],
"dependencies": {
"@sanity/assist": "^3.0.8",
"@sanity/document-internationalization": "^3.0.1",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sanity": "^3.57.4",
"styled-components": "^6.1.13"
},
"devDependencies": {
"@sanctucompu/sanity-graph-import": "https://github.com/regen-network/sanity-graph-import",
"prettier": "^2.5.1"
}
}