-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 907 Bytes
/
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
{
"name": "@example/minimal",
"type": "module",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "wrangler pages dev ./dist",
"astro": "astro",
"deploy": "dotenv -e .env.local astro build && wrangler pages publish ./dist --commit-dirty=true"
},
"dependencies": {
"@astrojs/cloudflare": "^3.1.0",
"@astrojs/lit": "^1.0.1",
"@astrojs/react": "^1.2.0",
"@editorjs/editorjs": "^2.25.0",
"@generic-components/components": "^1.1.8",
"@webcomponents/template-shadowroot": "^0.1.0",
"astro": "^1.5.0",
"emo-ji": "^1.0.4",
"lit": "^2.1.3",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-editor-js": "^2.1.0",
"web-streams-polyfill": "^3.2.1"
},
"devDependencies": {
"@types/react": "^18.0.21",
"custom-elements-ssr": "^0.0.11",
"dotenv-cli": "^6.0.0",
"wrangler": "^2.1.11"
}
}