-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.39 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.39 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
{
"name": "utahjs-website",
"author": "UtahJS Community",
"description": "Version 3 of the UtahJS Website.",
"license": "ISC",
"main": "index.js",
"private": true,
"version": "3.0.0",
"scripts": {
"start": "next dev",
"build": "next build",
"production": "next start",
"pre-commit": "lint-staged",
"prepare": "husky install",
"lint": "next lint"
},
"dependencies": {
"@portabletext/react": "^2.0.2",
"@sanity/icons": "^2.1.0",
"@sanity/ui": "^1.2.0",
"@sanity/vision": "^3.11.5",
"@types/json-schema": "^7.0.12",
"eslint-config-next": "13.4.4",
"next": "13.4.4",
"next-sanity": "^5.1.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-is": "^18.2.0",
"sanity": "^3.14.1",
"styled-components": "^5.3.11"
},
"devDependencies": {
"@sanity/eslint-config-studio": "^2.0.1",
"@sanity/types": "^3.12.1",
"@types/node": "18.15.0",
"@types/react": "18.2.8",
"@types/react-dom": "18.0.11",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^3.0.0-alpha.6",
"sass": "^1.62.1",
"typescript": "5.1.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css,scss}": [
"prettier --write",
"eslint --max-warnings 0"
],
"*.json": [
"prettier --list-different"
]
}
}