-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
91 lines (91 loc) · 2.66 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "sanity-super-pane",
"version": "0.0.0",
"description": "",
"keywords": [
"sanity"
],
"license": "MIT",
"author": {
"name": "Rico Kahler",
"email": "[email protected]",
"url": "https://github.com/ricokahler"
},
"module": "./dist/index.esm.js",
"types": "./dist/index.d.ts",
"scripts": {
"start": "sanity start",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "./scripts/build",
"build:studio": "sanity build public -y",
"prepare": "npm run build",
"lint": "eslint super-pane",
"format": "prettier . --write"
},
"dependencies": {
"@types/classnames": "2.3.0",
"classnames": "2.3.1",
"nanoid": "3.3.2",
"react-error-boundary": "3.1.4",
"styled-components": "5.3.5"
},
"devDependencies": {
"@babel/core": "7.17.8",
"@babel/plugin-proposal-class-properties": "7.16.7",
"@babel/plugin-proposal-object-rest-spread": "7.17.3",
"@babel/plugin-transform-runtime": "7.17.0",
"@babel/preset-env": "7.16.11",
"@babel/preset-react": "7.16.7",
"@babel/preset-typescript": "7.16.7",
"@rollup/plugin-babel": "5.3.1",
"@rollup/plugin-node-resolve": "11.2.1",
"@sanity/base": "2.25.4",
"@sanity/cli": "2.25.0",
"@sanity/client": "2.23.2",
"@sanity/components": "2.14.0",
"@sanity/core": "2.25.0",
"@sanity/default-layout": "2.25.4",
"@sanity/default-login": "2.24.1",
"@sanity/desk-tool": "2.25.4",
"@sanity/google-maps-input": "2.25.4",
"@sanity/icons": "1.2.6",
"@sanity/ui": "0.37.6",
"@sanity/vision": "2.25.4",
"@types/classnames": "2.3.0",
"@types/react": "17.0.43",
"@types/react-dom": "17.0.14",
"@types/styled-components": "5.1.24",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"autoprefixer": "10.4.4",
"babel-eslint": "10.1.0",
"eslint": "7.32.0",
"eslint-config-react-app": "6.0.0",
"eslint-plugin-flowtype": "5.10.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-react": "7.29.4",
"eslint-plugin-react-hooks": "4.3.0",
"json-reduce": "2.0.0",
"postcss": "8.4.12",
"prettier": "2.6.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-error-boundary": "3.1.4",
"react-icons": "4.3.1",
"rollup": "2.70.1",
"rollup-plugin-postcss": "4.0.2",
"rxjs": "6.6.7",
"semantic-release": "17.4.7",
"typescript": "4.6.3"
},
"peerDependencies": {
"@sanity/base": "*",
"@sanity/desk-tool": "*",
"@sanity/icons": "^1.0.0",
"@sanity/ui": "*",
"@types/react": "^16 || ^17",
"react": "^16 || ^17",
"rxjs": "^6.0.0"
}
}