-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.93 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.93 KB
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": "offbeat-appetite-sanity",
"private": true,
"version": "0.0.30",
"description": "The CMS feeding The Offbeat Appetite's frontend, made with Sanity.io",
"main": "package.json",
"author": "Marco Ciampini <marco.ciampo@gmail.com>",
"license": "UNLICENSED",
"scripts": {
"start": "sanity start",
"build": "sanity build",
"deploy": "sanity deploy",
"static": "yarn build && cp netlify.toml dist",
"test": "sanity check",
"lint": "eslint '**/*.js'"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"post-checkout": "if [[ $HUSKY_GIT_PARAMS =~ 1$ ]]; then yarn install --frozen-lockfile; fi",
"post-merge": "yarn install --frozen-lockfile",
"post-rebase": "yarn install",
"pre-push": "yarn test"
}
},
"lint-staged": {
"*.{js}": [
"eslint --fix"
]
},
"keywords": [
"sanity",
"offbeat appetite"
],
"dependencies": {
"@sanity/base": "^2.0.9",
"@sanity/cli": "^2.0.9",
"@sanity/components": "^2.0.9",
"@sanity/core": "^2.0.9",
"@sanity/dashboard": "^2.0.9",
"@sanity/default-layout": "^2.0.9",
"@sanity/default-login": "^2.0.9",
"@sanity/desk-tool": "^2.0.9",
"@sanity/vision": "^2.0.9",
"prop-types": "^15.6",
"react": "^16.2",
"react-dom": "^16.2",
"react-icons": "^3.0.0",
"sanity-plugin-dashboard-widget-document-list": "^0.0.8",
"sanity-plugin-dashboard-widget-netlify": "^1.0.1",
"sanity-plugin-media": "^0.2.10"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^2.3.0",
"husky": "^4.0.10",
"lint-staged": "^10.0.8",
"prettier": "^1.19.1"
},
"repository": {
"type": "git",
"url": "https://github.com/ciampo/offbeat-appetite-sanity.git"
}
}