-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.96 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
{
"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=${EMBER_EXAM_CONCURRENCY:-8} --load-balance",
"test:lti-course-manager": "pnpm --filter lti-course-manager exec ember exam --parallel=${EMBER_EXAM_CONCURRENCY:-8} --load-balance",
"test:lti-dashboard": "pnpm --filter lti-dashboard exec ember exam --parallel=${EMBER_EXAM_CONCURRENCY:-8} --load-balance",
"test:test-app": "pnpm --filter test-app exec ember exam --parallel=${EMBER_EXAM_CONCURRENCY:-8} --load-balance",
"test:screenshots": "pnpm --filter frontend exec ember exam --parallel=${EMBER_EXAM_CONCURRENCY:-8} --load-balance --config-file=testem/screenshots-config.js",
"test:darkmode-screenshots": "pnpm --filter frontend exec ember exam --parallel=${EMBER_EXAM_CONCURRENCY:-8} --load-balance --config-file=testem/screenshots-darkmode-config.js",
"prepare": "husky"
},
"engines": {
"node": ">= 24",
"yarn": "use pnpm",
"npm": "use pnpm"
},
"devEngines": {
"packageManager": {
"name": "pnpm",
"version": "11.25.0"
}
},
"devDependencies": {
"husky": "^9.1.4"
}
}