forked from PrairieLearn/PrairieLearn
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 3.22 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 3.22 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "prairielearn",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"packageManager": "yarn@4.14.1",
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"capture-access-control-screenshots": "CAPTURE_SCREENSHOTS=1 yarn workspace @prairielearn/prairielearn run test:e2e src/tests/e2e/captureAccessControlScreenshots.spec.ts",
"capture-onboarding-screenshots": "CAPTURE_SCREENSHOTS=1 yarn workspace @prairielearn/prairielearn test:e2e captureOnboardingScreenshots",
"dev": "yarn workspace @prairielearn/prairielearn dev",
"dev-bun": "yarn workspace @prairielearn/prairielearn dev:bun",
"dev-vite": "yarn workspace @prairielearn/prairielearn dev:vite",
"dev-workspace-host": "yarn workspace @prairielearn/workspace-host dev",
"grader-host-dev": "yarn workspace @prairielearn/grader-host dev",
"grader-host-start": "yarn workspace @prairielearn/grader-host start",
"migrate": "yarn workspace @prairielearn/prairielearn start --migrate-and-exit",
"migrate-dev": "yarn workspace @prairielearn/prairielearn dev:no-watch --migrate-and-exit",
"refresh-workspace-hosts": "yarn workspace @prairielearn/prairielearn start --refresh-workspace-hosts-and-exit",
"refresh-workspace-hosts-dev": "yarn workspace @prairielearn/prairielearn dev:no-watch --refresh-workspace-hosts-and-exit",
"release": "turbo run build && node scripts/fix-workspace-versions-before-publish.mjs && changeset publish --no-git-tag",
"start": "yarn workspace @prairielearn/prairielearn start",
"start-workspace-host": "yarn workspace @prairielearn/workspace-host start",
"test": "vitest run --coverage",
"version": "changeset version && YARN_ENABLE_IMMUTABLE_INSTALLS=false yarn"
},
"dependencies": {
"async": "^3.2.6",
"node-gyp": "^12.3.0"
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@html-eslint/eslint-plugin": "^0.61.0",
"@html-eslint/parser": "^0.61.0",
"@playwright/test": "^1.60.0",
"@postgres-language-server/cli": "^0.25.0",
"@prairielearn/eslint-config": "workspace:^",
"@prairielearn/signed-token": "workspace:^",
"@prairielearn/tree-sitter-htmlmustache": "^1.4.3",
"@prairielearn/tsconfig": "workspace:^",
"@typescript/native-preview": "beta",
"@vitest/coverage-v8": "^4.1.7",
"dependency-cruiser": "^17.4.3",
"eslint": "^10.4.1",
"fast-glob": "^3.3.3",
"fs-extra": "^11.3.5",
"globals": "^17.6.0",
"globby": "^16.2.0",
"htmlhint": "^1.9.2",
"ignore": "^7.0.5",
"knip": "^6.14.2",
"linkinator": "^7.6.1",
"markdownlint-cli2": "^0.22.1",
"prettier": "^3.8.3",
"prettier-plugin-pkg": "^0.22.1",
"prettier-plugin-sh": "^0.18.1",
"prettier-plugin-sql": "^0.20.0",
"prettier-plugin-toml": "^2.0.6",
"pyright": "^1.1.410",
"s3rver": "^3.7.1",
"turbo": "^2.9.16",
"vitest": "^4.1.7",
"zod": "^3.25.76 <4",
"zod-to-json-schema": "^3.25.2"
},
"resolutions": {
"@aws-sdk/xml-builder/fast-xml-parser": "^5.7.3",
"@sa11y/common/axe-core": "^4",
"@sa11y/format/axe-core": "^4",
"@typescript/native-preview": "beta",
"linkinator/marked": "^18",
"markdownlint-cli2/smol-toml": "^1",
"notebookjs/jsdom": "*",
"typescript-cp/tar": "*"
}
}