-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.18 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
{
"name": "sanity-plugin-sketchfab",
"version": "1.0.0",
"main": "lib/sketchfabInput.js",
"author": "Andrew Grant <[email protected]>",
"license": "MIT",
"scripts": {
"watch": "babel src --copy-files --out-dir lib --watch",
"prepublishOnly": "npm run clean && babel src --copy-files --out-dir lib",
"clean": "rimraf lib"
},
"keywords": [
"sanity",
"sanity-plugin"
],
"peerDependencies": {
"@sanity/base": ">=2.0.9",
"@sanity/components": ">=2.0.9",
"react": ">= 16.8",
"react-dom": ">= 16.8"
},
"dependencies": {
"lodash": "^4.17.21",
"swr": "^0.4.2"
},
"devDependencies": {
"@sanity/base": "2.0.9",
"@sanity/components": "2.0.9",
"babel-cli": "^6.20.0",
"babel-eslint": "^10.1.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"eslint": "^7.20.0",
"eslint-config-sanity": "^5.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-react-hooks": "^4.2.0",
"lodash": "^4.17.21",
"react": ">= 16.8",
"react-dom": ">= 16.8",
"rimraf": "^3.0.2",
"swr": "^0.4.2"
},
"resolutions": {
"@popperjs/core": "2.8.0"
}
}