forked from edgio-docs/edgio-nextjs-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 944 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 944 Bytes
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
{
"name": "layer0-nextjs-example",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"layer0:dev": "layer0 dev",
"layer0:build": "layer0 build",
"layer0:deploy": "layer0 deploy",
"layer0:production": "layer0 run --production",
"format": "prettier '**/*' --write --ignore-unknown"
},
"dependencies": {
"next": "^12.3.0",
"react": "^18.0.1",
"react-dom": "^18.0.1"
},
"devDependencies": {
"@heroicons/react": "^1.0.6",
"@layer0/cli": "^4.18.2",
"@layer0/core": "^4.18.2",
"@layer0/devtools": "^4.18.2",
"@layer0/next": "^4.18.2",
"@layer0/prefetch": "^4.18.2",
"@layer0/react": "^4.18.2",
"@layer0/rum": "^3.1.0",
"autoprefixer": "^10.4.7",
"classnames": "^2.3.1",
"node-fetch": "^3.2.8",
"postcss": "^8.4.13",
"prettier": "^2.6.2",
"prettier-plugin-tailwindcss": "^0.1.11",
"tailwindcss": "^3.0.24"
}
}