-
Notifications
You must be signed in to change notification settings - Fork 0
/
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": "todos",
"version": "0.2.1",
"description": "The list of todos in NextJS.",
"keywords": ["NextJS"],
"engines": {
"node": ">=18"
},
"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 build --filter=frontend",
"build-extension": "turbo run build --filter=\"link-overwatch\"",
"start": "turbo run start --filter=frontend",
"lint": "turbo run lint",
"format": "turbo run format",
"dev": "turbo run dev",
"dev-frontend": "turbo run dev --filter=frontend",
"dev-extension": "turbo run dev --filter=\"link-overwatch\"",
"prep": "npm install && npm run format && npm run build",
"codegen": "turbo run codegen"
},
"devDependencies": {
"turbo": "2.3.1"
},
"packageManager": "npm@8.7.0"
}