forked from sanity-io/demo-custom-workflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.78 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
{
"private": true,
"name": "demo-custom-workflow",
"version": "2.0.0",
"description": "A demonstration of a custom publishing workflow using Sanity.",
"main": "package.json",
"author": "Sanity.io <[email protected]>",
"license": "UNLICENSED",
"scripts": {
"dev": "sanity start",
"start": "sanity start",
"test": "sanity check",
"delete-metadata": "sanity exec --with-user-token app/scripts/deleteWorkflowDocs.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"postinstall": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint:fix"
}
},
"keywords": [
"sanity"
],
"dependencies": {
"@sanity/base": "^2.31.0",
"@sanity/client": "^3.0.0",
"@sanity/components": "^2.14.0",
"@sanity/core": "^2.31.0",
"@sanity/default-layout": "^2.31.0",
"@sanity/default-login": "^2.31.0",
"@sanity/desk-tool": "^2.31.0",
"@sanity/react-hooks": "^2.31.0",
"@sanity/ui": "^0.33.29",
"@sanity/vision": "^2.31.0",
"husky": "^7.0.2",
"prettier": "^2.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.2.0",
"react-use-gesture": "^9.1.3",
"styled-components": "^5.3.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"autoprefixer": "^10.2.4",
"babel-eslint": "^10.1.0",
"eslint": "^7.8.1",
"eslint-config-prettier": "^6.7.0",
"eslint-config-sanity": "^5.0.0",
"eslint-import-resolver-webpack": "^0.11.1",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-es5": "^1.4.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.2",
"typescript": "^4.3.4"
}
}