This repository has been archived by the owner on May 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
85 lines (85 loc) · 2.31 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "echo-web-cms",
"description": "CMS for echo – Linjeforeningen for informatikk sin nettside.",
"private": true,
"version": "1.0.0",
"author": "echo Webkom",
"scripts": {
"start": "sanity start",
"build": "sanity build",
"lint": "eslint \"**/*.{js,jsx}\"",
"format": "prettier --write \"**/*.{js,jsx,json,md}\" && prettier --write --tab-width=2 \"**/*.{yaml,yml}\"",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
],
"*.{yaml,yml}": [
"prettier --write --tab-width=2"
]
},
"eslintConfig": {
"parserOptions": {
"sourceType": "module",
"ecmaVersion": "2020"
},
"extends": [
"eslint:recommended",
"plugin:prettier/recommended"
],
"ignorePatterns": [
"node_modules/",
"dist/",
"scripts/"
]
},
"prettier": {
"semi": true,
"trailingComma": "all",
"singleQuote": true,
"printWidth": 120,
"tabWidth": 4
},
"renovate": {
"extends": [
"config:base"
],
"labels": [
"dependencies :handshake:"
],
"commitMessagePrefix": "⬆️ ",
"prHourlyLimit": 0,
"stabilityDays": 3,
"prCreation": "not-pending"
},
"dependencies": {
"@sanity/base": "2.29.8",
"@sanity/core": "2.29.5",
"@sanity/default-layout": "2.29.8",
"@sanity/default-login": "2.29.8",
"@sanity/desk-tool": "2.29.8",
"@sanity/vision": "2.29.8",
"prop-types": "15.8.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"sanity-plugin-color-picker": "1.0.3",
"react-icons": "4.3.1",
"sanity-plugin-markdown": "2.1.1",
"sanity-plugin-media": "1.4.4",
"styled-components": "5.3.5"
},
"devDependencies": {
"@sanity/cli": "2.29.8",
"eslint": "8.14.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.0.0",
"husky": "7.0.4",
"lint-staged": "12.4.1",
"prettier": "2.6.2"
}
}