forked from BretCameron/sanity-plugin-order-documents
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.96 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
61
62
63
64
65
66
67
68
69
{
"name": "sanity-plugin-order-documents",
"version": "0.0.22",
"description": "A Sanity Studio plugin that helps you order your documents via drag-and-drop.",
"main": "build/index.js",
"scripts": {
"start": "babel src -d build --copy-files --watch",
"develop": "yarn start",
"dev": "yarn start",
"build": "babel src -d build --copy-files",
"prepare": "yarn build",
"lint": "eslint src/**/**"
},
"homepage": "https://github.com/BretCameron/sanity-plugin-order-documents",
"bugs": {
"url": "https://github.com/BretCameron/sanity-plugin-order-documents/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/BretCameron/sanity-plugin-order-documents.git"
},
"author": "Bret Cameron <[email protected]>",
"keywords": [
"sanity",
"studio",
"order",
"sequence",
"arrange",
"documents",
"plugin"
],
"license": "MIT",
"private": false,
"publishConfig": {
"access": "public"
},
"dependencies": {
"immutability-helper": "^3.1.1",
"react-dnd": "^14.0.5",
"react-dnd-html5-backend": "^14.1.0",
"react-select": "^5.2.1",
"react-tippy": "^1.4.0"
},
"peerDependencies": {
"@sanity/base": ">= 0.135.x",
"@sanity/client": ">= 0.135.x",
"@sanity/components": ">= 0.135.x",
"@sanity/core": ">= 0.135.x",
"react": ">= 16.0.0"
},
"devDependencies": {
"@babel/cli": "^7.16.7",
"@babel/core": "^7.16.7",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"@babel/preset-react": "^7.16.7",
"babel-eslint": "^10.1.0",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-sanity": "^5.1.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"prettier": "^2.5.1",
"react-hot-loader": "4.13.0"
}
}