-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.09 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
{
"name": "layer0-astro-ssr-example",
"scripts": {
"astro": "astro",
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"edgio:dev": "node buildServiceWorker.js && edgio dev",
"edgio:build": "node buildServiceWorker.js && edgio build",
"edgio:deploy": "node buildServiceWorker.js && edgio deploy",
"edgio:production": "edgio run --production",
"format": "prettier --write '**/*' --ignore-unknown"
},
"dependencies": {
"@astrojs/node": "latest",
"@types/react": "^17.0.50",
"@types/react-dom": "^17.0.17",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@astrojs/react": "latest",
"@astrojs/tailwind": "latest",
"@edgio/astro": "^5.0.4",
"@edgio/cli": "^5.0.4",
"@edgio/core": "^5.0.4",
"@edgio/devtools": "^5.0.4",
"@edgio/prefetch": "^5.0.4",
"@edgio/react": "^5.0.4",
"@heroicons/react": "^1.0.6",
"astro": "latest",
"classnames": "^2.3.1",
"prettier": "^2.7.1",
"prettier-plugin-astro": "latest",
"tailwindcss": "^3.2.1"
}
}