-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
31 lines (31 loc) · 1.26 KB
/
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
{
"private": true,
"license": "MIT",
"author": "The Ilios Team ([email protected])",
"scripts": {
"preinstall": "npx only-allow pnpm",
"lint": "pnpm run --parallel \"/^lint:(hbs|js|css)$/\"",
"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:deps": "pnpm run --parallel lint:deps",
"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",
"prepare": "husky"
},
"engines": {
"node": ">= 20",
"yarn": "use pnpm",
"npm": "use pnpm"
},
"devDependencies": {
"husky": "^9.1.4"
}
}