-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 981 Bytes
/
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
{
"name": "workspace-root",
"version": "1.0.0",
"private": true,
"description": "Workspace root for ember-workshop",
"repository": {
"type": "git",
"url": "https://github.com/ijlee2/ember-workshop.git"
},
"license": "MIT",
"author": "Isaac J. Lee",
"type": "module",
"scripts": {
"build": "concurrently 'pnpm:build:*'",
"build:my-addon": "pnpm --filter my-addon build",
"build:my-app": "pnpm --filter my-app build",
"lint": "pnpm --filter '*' lint",
"lint:fix": "pnpm --filter '*' lint:fix",
"prepare": "pnpm build:my-addon",
"start": "concurrently 'pnpm:start:*' --restart-after 5000 --prefix-colors cyan,yellow",
"start:my-addon": "pnpm --filter my-addon start",
"start:my-app": "pnpm --filter my-app start",
"test": "pnpm --filter my-app test"
},
"devDependencies": {
"concurrently": "^9.0.1"
},
"packageManager": "[email protected]",
"engines": {
"node": "18.* || >= 20",
"pnpm": ">= 9"
}
}