-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
62 lines (62 loc) · 1.52 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
{
"name": "sanity-plugin-webhook-deploy",
"version": "1.0.0",
"description": "Simple tab to manually trigger webhook deploys",
"main": "lib/index.js",
"scripts": {
"lint": "eslint .",
"build": "sanipack build",
"watch": "sanipack build --watch",
"prepublishOnly": "sanipack build && sanipack verify"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/gardener-nyc/sanity-plugin-webhook-deploy.git"
},
"keywords": [
"sanity",
"sanity-plugin"
],
"author": "Ian Hatcher-Williams <ian@gardener.nyc>",
"license": "MIT",
"dependencies": {
"@sanity/icons": "^1.2.3",
"@sanity/ui": "^0.37.2",
"axios": "^0.24.0",
"nanoid": "^3.1.32",
"prop-types": "^15.8.1",
"styled-components": "^5.3.3"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-sanity": "^5.1.0",
"eslint-plugin-react": "^7.28.0",
"prettier": "^2.5.1",
"sanipack": "^2.1.0"
},
"peerDependencies": {
"react": "^17.0.0"
},
"bugs": {
"url": "https://github.com/gardener-nyc/sanity-plugin-webhook-deploy/issues"
},
"homepage": "https://github.com/gardener-nyc/sanity-plugin-webhook-deploy#readme",
"prettier": {
"semi": false,
"printWidth": 100,
"bracketSpacing": false,
"singleQuote": true
},
"eslintConfig": {
"parser": "sanipack/babel/eslint-parser",
"extends": [
"sanity",
"sanity/react",
"prettier"
],
"ignorePatterns": [
"lib/**/"
]
}
}