-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 891 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 891 Bytes
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
{
"private": true,
"scripts": {
"prepare": "yarn workspace ember-ace build",
"build": "yarn workspace ember-ace build",
"start": "concurrently 'npm:start:*' --restart-after 5000 --prefix-colors cyan,white,yellow",
"start:addon": "yarn workspace ember-ace start",
"start:test": "yarn workspace test-app run start",
"lint": "yarn workspaces run lint",
"lint:fix": "yarn workspaces run lint:fix",
"test": "yarn workspaces run test",
"typecheck": "yarn workspaces run typecheck"
},
"devDependencies": {
"@dfreeman/eslint-config": "^4.0.0",
"concurrently": "^7.2.1",
"ember-template-lint": "^4.10.1",
"eslint": "^8.21.0",
"prettier": "^2.5.1",
"typescript": "^4.7.4"
},
"workspaces": [
"ember-ace",
"test-app"
],
"volta": {
"node": "14.20.0"
},
"resolutions": {
"**/ember-cli-babel": "^7.26.0"
}
}