-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.74 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
{
"name": "tilleggsstonader-brev-sanity",
"private": true,
"version": "1.0.0",
"main": "package.json",
"license": "UNLICENSED",
"scripts": {
"dev": "sanity dev",
"start": "sanity start",
"build": "sanity build",
"deploy": "sanity deploy",
"deploy-graphql": "sanity graphql deploy",
"lint": "eslint 'src/**/*'",
"lint:fix": "eslint 'src/**/*' --fix",
"prettier": "prettier --write",
"prepare": "husky"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css}": [
"prettier --write",
"eslint --fix --max-warnings=0"
]
},
"keywords": [
"sanity"
],
"dependencies": {
"@portabletext/react": "^3.1.0",
"@sanity/client": "^6.22.2",
"@sanity/ui": "^2.8.10",
"@sanity/vision": "^3.64.3",
"date-fns": "^4.1.0",
"globals": "^15.12.0",
"groq": "^3.64.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-is": "^18.3.1",
"sanity": "^3.64.3",
"styled-components": "^6.1.11"
},
"devDependencies": {
"@eslint/compat": "^1.2.1",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.15.0",
"@sanity/eslint-config-studio": "^4.0.0",
"@types/react": "^18.3.12",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react-hooks": "^5.0.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"typescript": "^5.7.2"
},
"prettier": {
"semi": true,
"printWidth": 100,
"bracketSpacing": true,
"singleQuote": true
}
}