-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.24 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
41
42
43
44
{
"name": "@undone-labs/nuxt3-starter",
"version": "1.0.0",
"description": "Get a Nuxt 3 site up and running fast 🚀",
"author": {
"name": "Undone Ventures",
"email": "[email protected]"
},
"license": "Apache-2.0",
"keywords": [],
"repository": {
"type": "git",
"url": "[email protected]:undone-labs/nuxt3-starter.git"
},
"bugs": {
"url": "https://github.com/undone-labs/nuxt3-starter/issues"
},
"homepage": "https://github.com/undone-labs/nuxt3-starter#readme",
"engines": {
"node": ">=20.9.0"
},
"scripts": {
"site:dev": "npm run dev -w site",
"site:build": "npm run build -w site",
"site:start": "npm run start -w site",
"site:generate": "npm run generate -w site",
"site:serve": "npm run serve -w site",
"site:upgrade-nuxt": "npm run upgrade-nuxt -w site",
"site:test": "npm run test -w site",
"docs:dev": "npm run docs:dev -w docs",
"docs:build": "npm run docs:build -w docs",
"docs:preview": "npm run docs:preview -w docs",
"docs:test": "npm run docs:test -w docs",
"zero-core:test": "npm run test -w zero-core"
},
"workspaces": [
"packages/zero-core",
"packages/site",
"packages/docs"
],
"devDependencies": {
"chalk": "^5.3.0"
}
}