-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.3 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
{
"name": "@universal-ember/form-root",
"version": "0.0.0",
"private": true,
"repository": {
"type": "git",
"url": "git@github.com:universal-ember/form.git"
},
"license": "MIT",
"contributors": [
{
"name": "simonihmig",
"url": "https://github.com/simonihmig"
}
],
"scripts": {
"_start:docs": "pnpm --filter docs-app start",
"_start:packages": "pnpm --stream -parallel --filter './packages/*' start --no-watch.clearScreen",
"_start:tests": "pnpm --filter test-app start",
"build": "pnpm turbo build",
"build:docs": "pnpm turbo build --filter docs-app",
"build:packages": "pnpm turbo --filter='./packages/*' build",
"lint": "pnpm turbo lint",
"lint:fix": "pnpm --filter '*' lint:fix",
"start": "pnpm --filter './packages/*' build; concurrently 'npm:_start:*' --names '_start:'",
"start:docs-app": "pnpm --filter './packages/*' build; pnpm --stream --parallel --filter docs-app... start",
"start:test-app": "pnpm --filter './packages/*' build; pnpm --stream --parallel --filter test-app... start",
"test": "pnpm turbo test"
},
"devDependencies": {
"concurrently": "^9.0.0",
"prettier": "^3.8.1",
"release-plan": "^0.17.4",
"turbo": "^1.7.4"
},
"packageManager": "pnpm@11.15.0",
"engines": {
"node": "^24.0.0"
}
}