-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.58 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
{
"name": "@andre-brdoch/sanity-plugin-schema-inspector",
"version": "1.5.0",
"description": "Tool plugin for inspecting your schema",
"repository": {
"type": "git",
"url": "https://github.com/andre-brdoch/sanity-plugin-schema-inspector.git"
},
"homepage": "https://github.com/andre-brdoch/sanity-plugin-schema-inspector#readme",
"bugs": {
"url": "https://github.com/andre-brdoch/sanity-plugin-schema-inspector/issues"
},
"main": "lib/index.js",
"scripts": {
"build": "babel src -d lib -x \".ts,.tsx,.js\" -D --no-copy-ignored",
"watch": "babel src -d lib -x \".ts,.tsx,.js\" -D --no-copy-ignored -w",
"clear": "rimraf lib"
},
"keywords": [
"sanity",
"cms",
"plugin",
"schema"
],
"author": "André Brdoch",
"license": "MIT",
"dependencies": {
"@sanity/base": "^2.22.0",
"@sanity/desk-tool": "^2.22.0",
"@sanity/ui": "^0.36.15",
"react-icons": "^4.1.0",
"react-json-inspector": "^7.1.1"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-react": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@types/react": "^17.0.0",
"babel-eslint": "^10.1.0",
"eslint": "^8.4.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"typescript": "^4.1.2"
},
"peerDependencies": {
"react": "^16 || ^17",
"react-dom": "^16.9 || ^17",
"styled-components": "^5.2"
}
}