-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.13 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 2.13 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
{
"name": "doenet-tools",
"type": "module",
"private": true,
"engines": {
"node": "~24.15.0"
},
"workspaces": [
"apps/*",
"packages/*"
],
"lint-staged": {
"**/*.{ts,tsx,js,jsx,json,css,md,mdx,yaml,yml,astro}": "prettier --write"
},
"scripts": {
"prepare": "husky || true",
"postinstall": "npm run prisma:generate --workspace @doenet-tools/api",
"setup": "node scripts/setup.js",
"db:setup": "npm run prisma:migrate-dev --workspace @doenet-tools/api && npm run prisma:seed --workspace @doenet-tools/api",
"predev": "node scripts/dev-preflight.js",
"dev": "npm run build --workspace @doenet-tools/shared -- --force && concurrently \"npm run dev --workspace @doenet-tools/shared\" \"npm run dev --workspace @doenet-tools/api\" \"npm run dev --workspace @doenet-tools/app\" \"npm run dev --workspace @doenet-tools/web\"",
"format": "prettier . --write",
"format:check": "prettier . --check",
"lint": "npm run lint --workspaces --if-present",
"lint:check": "npm run lint:check --workspaces --if-present",
"build:ts": "npm run build:ts --workspaces --if-present && tsc --build",
"build:assets": "npm run build:assets --workspaces --if-present",
"build": "npm run build:ts && npm run build:assets"
},
"devDependencies": {
"@cypress/grep": "^6.0.0",
"@doenet-tools/eslint-config": "*",
"@eslint/js": "^9.39.2",
"@types/luxon": "^3.7.1",
"@types/node": "^25.0.10",
"concurrently": "^9.1.0",
"cypress": "^15.10.0",
"cypress-axe": "^1.7.0",
"cypress-file-upload": "^5.0.8",
"cypress-iframe": "^1.0.1",
"cypress-parallel": "^0.15.0",
"cypress-plugin-tab": "^1.0.5",
"cypress-wait-until": "^3.0.2",
"eslint": "^9.39.2",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-mocha": "^11.2.0",
"eslint-plugin-unused-imports": "^4.3.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.1",
"vite": "^7.3.1",
"vite-plugin-dts": "^4.5.4",
"wick-a11y": "^2.5.0"
}
}