-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.97 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
{
"name": "pyschool",
"type": "module",
"version": "0.0.1",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"generate:python-runner": "node scripts/build-python-runner.mjs",
"predev": "pnpm generate:python-runner",
"prebuild": "pnpm generate:python-runner",
"pretest:python": "pnpm generate:python-runner",
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"check": "astro check",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier . --write",
"format:check": "prettier . --check",
"test": "vitest run",
"test:watch": "vitest",
"test:python": "playwright test",
"verify": "pnpm check && pnpm lint && pnpm format:check && pnpm test && pnpm test:python && pnpm build",
"prepare": "husky"
},
"dependencies": {
"@astrojs/mdx": "^7.0.8",
"@codemirror/autocomplete": "^6.20.3",
"@codemirror/commands": "^6.11.0",
"@codemirror/lang-python": "^6.2.1",
"@codemirror/language": "^6.12.4",
"@codemirror/state": "^6.7.1",
"@codemirror/theme-one-dark": "^6.1.3",
"@codemirror/view": "^6.43.9",
"@supabase/supabase-js": "^2.112.4",
"@tailwindcss/vite": "^4.3.3",
"astro": "^7.2.6",
"astro-seo": "^1.1.0",
"canvas-confetti": "^1.9.4",
"tailwindcss": "^4.3.3"
},
"allowScripts": {
"esbuild": true
},
"devDependencies": {
"@astrojs/check": "^0.9.10",
"@commitlint/cli": "^21.2.2",
"@commitlint/config-conventional": "^21.2.2",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.62.1",
"@types/canvas-confetti": "^1.9.0",
"@types/node": "^26.3.0",
"esbuild": "^0.28.2",
"eslint": "^10.9.1",
"eslint-plugin-astro": "^3.1.0",
"husky": "^9.1.7",
"lint-staged": "^17.3.0",
"prettier": "^3.9.6",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.8.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.68.0",
"vitest": "^4.1.11"
}
}