-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.29 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.29 KB
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
45
46
47
48
49
50
{
"name": "todos",
"version": "0.2.1",
"description": "The list of todos in NextJS.",
"keywords": [
"NextJS"
],
"engines": {
"node": ">=22.14.0"
},
"private": true,
"author": "GabenGar",
"license": "MIT",
"homepage": "https://github.com/GabenGar/todos#readme",
"bugs": {
"url": "https://github.com/GabenGar/todos/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GabenGar/todos.git"
},
"workspaces": [
"docs",
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"build-frontend": "turbo run frontend#build",
"build-extension": "turbo run \"link-overwatch\"#build",
"build-oikia": "turbo run oikia#build",
"start": "turbo run start",
"start-oikia": "turbo run oikia#start",
"lint": "turbo run lint",
"format": "turbo run format",
"check": "turbo run check",
"dev": "turbo run dev",
"dev-pages": "turbo run frontend#dev",
"dev-extension": "turbo run \"link-overwatch\"#dev",
"dev-oikia": "turbo run oikia#dev",
"prep": "npm install && npm run format && npm run build",
"codegen": "turbo run codegen",
"validate": "turbo run validate"
},
"devDependencies": {
"@biomejs/biome": "2.4.4",
"turbo": "2.8.20"
},
"packageManager": "npm@11.10.1"
}