This repository has been archived by the owner on Apr 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
65 lines (65 loc) · 1.93 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
{
"name": "sanity-plugin-content-calendar",
"version": "1.2.5",
"description": "A Content Calendar for your Sanity Studio",
"main": "build/index.js",
"scripts": {
"build": "babel src -d build --copy-files",
"watch": "babel src -d build -w --copy-files",
"dev": "npm run watch",
"test": "exit 0",
"prepare": "npm run build",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable && babel src -d build --copy-files",
"postpublish": "pinst --enable",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint:fix"
}
},
"author": "Sanity.io <hello@sanity.io>",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.15.4",
"@sanity/ui": "^0.36.3",
"date-fns": "^2.23.0",
"dlv": "^1.1.3",
"react-big-calendar": "^0.35.0",
"husky": "^7.0.1"
},
"devDependencies": {
"@babel/cli": "^7.6.3",
"@babel/core": "^7.6.3",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@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",
"pinst": "^2.1.6",
"typescript": "^4.3.4"
},
"peerDependencies": {
"@sanity/base": "^2.0.9",
"@sanity/components": "^2.0.9",
"@sanity/core": "^2.0.9",
"@sanity/react-hooks": "^2.0.9",
"react": "^16 || ^17",
"react-dom": "^16 || ^17"
}
}