-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
18 lines (18 loc) · 814 Bytes
/
package.json
File metadata and controls
18 lines (18 loc) · 814 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"name": "code-tode",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev:backend": "pnpm --filter=backend dev",
"dev:frontend": "pnpm --filter=frontend dev",
"dev:packages": "pnpm --filter=@packages/definitions dev",
"build": "pnpm --recursive build",
"build:definitions": "pnpm --filter=@packages/definitions build",
"dev:all": "pnpm --filter=@packages/definitions dev & pnpm --filter=backend dev & pnpm --filter=frontend dev",
"clean": "find . -type d -name 'node_modules' -o -name '.turbo' -o -name 'dist' -o -name 'build' -o -name '.next' -o -name 'out' | xargs rm -rf && find . -name 'pnpm-lock.yaml' -not -path './pnpm-lock.yaml' -o -name '*.log' -o -name '.DS_Store' | xargs rm -f"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": ""
}