-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 950 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": "astro-contentful-root",
"type": "module",
"version": "0.1.0",
"workspaces": [
"demo",
"packages/*"
],
"scripts": {
"bump:patch": "npm --workspaces --git-tag-version false version patch && npm --git-tag-version false version patch",
"bump:minor": "npm --workspaces --git-tag-version false version minor && npm --git-tag-version false version minor",
"bump:major": "npm --workspaces --git-tag-version false version major && npm --git-tag-version false version major",
"start": "cd demo; astro dev",
"build": "cd demo; astro build",
"serve": "cd demo; astro preview",
"release": "npm --workspaces publish --access public"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5",
"useTabs": true
},
"stackblitz": {
"startCommand": "npm start",
"env": {
"ENABLE_CJS_IMPORTS": true
}
},
"devDependencies": {
"astro": "latest",
"types-object": "0.3.0"
},
"private": true
}