-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
29 lines (29 loc) · 949 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
{
"name": "workspace-root",
"version": "7.0.2",
"private": true,
"repository": "https://github.com/ember-cli/ember-welcome-page",
"license": "MIT",
"author": "David Baker <[email protected]>",
"workspaces": [
"ember-welcome-page",
"test-app"
],
"scripts": {
"build": "yarn workspace ember-welcome-page run build",
"lint": "yarn workspaces run lint",
"lint:fix": "yarn workspaces run lint:fix",
"prepare": "yarn build",
"release": "release-it",
"start": "concurrently \"npm:start:*\" --restart-after 5000 --prefix-colors cyan,white,yellow",
"start:addon": "yarn workspace ember-welcome-page run start",
"start:test-app": "yarn workspace test-app run start",
"test": "yarn workspaces run test"
},
"devDependencies": {
"@release-it-plugins/lerna-changelog": "^5.0.0",
"@release-it-plugins/workspaces": "^3.2.0",
"concurrently": "^8.0.1",
"release-it": "^15.10.3"
}
}