-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.49 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "hello-sanity-studio",
"version": "0.7.1",
"description": "Sanity plugin that helps you quickly set up a default Sanity Studio desk.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"private": false,
"scripts": {
"build": "tsc && npm run copy-css",
"copy-css": "yarn copyfiles -f ./src/styles/*.css ./lib/styles/",
"test": "jest --config jestconfig.json",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/snowpact/hello-sanity-studio.git"
},
"keywords": [
"sanity-studio",
"sanity",
"starter",
"theme"
],
"author": "Murat Avcı",
"license": "MIT",
"bugs": {
"url": "https://github.com/snowpact/hello-sanity-studio/issues"
},
"homepage": "https://github.com/snowpact/hello-sanity-studio#readme",
"peerDependencies": {
"@sanity/orderable-document-list": "^0.99.0",
"react-icons": "^4.8.0",
"sanity": "^3.8.3"
},
"devDependencies": {
"@types/jest": "^29.5.1",
"copyfiles": "^2.4.1",
"jest": "^29.5.0",
"prettier": "^2.8.7",
"react-icons": "^4.8.0",
"sanity": "^3.8.3",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
},
"prettier": {
"semi": true,
"printWidth": 100,
"bracketSpacing": true,
"singleQuote": true
},
"dependencies": {
"@sanity/client": "^5.4.2",
"@sanity/groq-store": "^2.1.0",
"@sanity/orderable-document-list": "^1.0.4",
"lodash": "^4.17.21"
}
}