-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.16 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
{
"name": "nextjs-starter-prismic-blog",
"version": "0.0.0",
"private": true,
"license": "Apache-2.0",
"author": "Prismic <contact@prismic.io> (https://prismic.io)",
"scripts": {
"dev": "concurrently \"npm:next:dev\" \"npm:slicemachine\" --names \"next,slicemachine\" --prefix-colors blue,magenta",
"next:dev": "next",
"build": "next build",
"start": "next start",
"lint": "next lint",
"slicemachine": "start-slicemachine",
"format": "prettier --write .",
"gen": "prismic-ts-codegen"
},
"dependencies": {
"@prismicio/client": "^7.3.1",
"@prismicio/next": "^1.5.0",
"@prismicio/react": "^2.7.3",
"clsx": "^2.0.0",
"next": "^14.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@slicemachine/adapter-next": "^0.3.27",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@types/react": "18.2.33",
"autoprefixer": "^10.4.16",
"concurrently": "^8.2.2",
"eslint": "8.52.0",
"eslint-config-next": "^14.0.1",
"postcss": "^8.4.31",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.6",
"slice-machine-ui": "^1.21.1",
"tailwindcss": "^3.3.5"
}
}