-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.51 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
{
"name": "next-starter",
"version": "0.1.0",
"private": true,
"author": "Ryan Warner <[email protected]> (https://warner.codes)",
"scripts": {
"dev": "next dev -- -p 7777",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@chakra-ui/icons": "2.1.0",
"@chakra-ui/react": "2.8.0",
"@emotion/react": "11.11.1",
"@emotion/styled": "11.11.0",
"@portabletext/react": "3.0.11",
"@sanity/cli": "3.18.1",
"@sanity/icons": "2.6.0",
"@sanity/image-url": "1.0.2",
"@sanity/types": "3.18.1",
"@sanity/ui": "1.8.3",
"@sanity/vision": "3.18.1",
"dayjs": "1.11.9",
"framer-motion": "10.16.0",
"ga-gtag": "^1.1.7",
"mixpanel-browser": "2.47.0",
"next": "14.0.1",
"next-sanity": "5.5.10",
"next-seo": "6.4.0",
"react": "^18",
"react-dom": "18.2.0",
"sanity": "3.19.0",
"styled-components": "5.3.9"
},
"devDependencies": {
"@sanity/eslint-config-studio": "3.0.1",
"@types/mixpanel-browser": "^2.47.1",
"@types/node": "20.8.10",
"@types/react": "18.2.34",
"@types/react-dom": "18.2.14",
"@types/styled-components": "5.1.29",
"cspell": "7.3.5",
"eslint": "8.52.0",
"eslint-config-next": "14.0.1",
"prettier": "3.0.0",
"typescript": "5.2.2"
},
"prettier": {
"singleQuote": true,
"semi": false,
"printWidth": 70,
"tabWidth": 2,
"useTabs": false,
"bracketSpacing": true,
"jsxSingleQuote": true,
"trailingComma": "none"
}
}