-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.77 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.77 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
41
42
43
44
45
46
47
{
"private": true,
"license": "MIT",
"author": "The Ilios Team (info@iliosproject.org)",
"scripts": {
"preinstall": "npx only-allow pnpm",
"format": "pnpm run --parallel format",
"lint": "pnpm run --parallel \"/^lint:(hbs|js|css|format|intl)$/\"",
"lint:js": "pnpm run --parallel lint:js",
"lint:hbs": "pnpm run --parallel lint:hbs",
"lint:css": "pnpm run --parallel lint:css",
"lint:fix": "pnpm run --parallel lint:fix",
"lint:intl": "pnpm run --parallel lint:intl",
"lint:deps": "pnpm run --parallel lint:deps",
"lint:format": "pnpm run --parallel lint:format",
"start": "pnpm --filter frontend exec ember serve",
"start:lti-course-manager": "pnpm --filter lti-course-manager exec ember serve",
"start:lti-dashboard": "pnpm --filter lti-dashboard exec ember serve",
"start:test-app": "pnpm --filter test-app exec ember serve",
"test:frontend": "pnpm --filter frontend exec ember exam --parallel=8 --load-balance",
"test:lti-course-manager": "pnpm --filter lti-course-manager exec ember exam --parallel=8 --load-balance",
"test:lti-dashboard": "pnpm --filter lti-dashboard exec ember exam --parallel=8 --load-balance",
"test:test-app": "pnpm --filter test-app exec ember exam --parallel=8 --load-balance",
"test:frontend:screenshots": "pnpm --filter frontend exec ember exam --parallel=8 --load-balance --config-file=testem.screenshots.js",
"prepare": "husky"
},
"engines": {
"node": ">= 24",
"yarn": "use pnpm",
"npm": "use pnpm"
},
"devDependencies": {
"husky": "^9.1.4"
},
"packageManager": "pnpm@10.33.2",
"pnpm": {
"ignoredBuiltDependencies": [
"@parcel/watcher",
"core-js"
],
"onlyBuiltDependencies": [
"aws-sdk",
"fsevents",
"sharp"
]
}
}