-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.02 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.02 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
{
"name": "python-coding-challenge",
"type": "module",
"version": "0.0.1",
"packageManager": "pnpm@10.26.0",
"scripts": {
"dev": "pnpm cp-pyscript && astro dev",
"build": "pnpm cp-pyscript && pnpm pyminify:prod && astro build",
"preview": "astro preview",
"astro": "astro",
"format": "prettier --write",
"format:check": "prettier --check",
"cp-pyscript": "mkdir -p public && cp -R srcpy/*.py public/",
"pyminify:prod": "uv run --no-dev --frozen pyminify public/ --in-place --remove-literal-statements",
"pyminify": "uv run pyminify public/ --in-place --remove-literal-statements"
},
"dependencies": {
"@iconify-json/fa7-brands": "^1.2.1",
"ace-builds": "^1.43.5",
"astro": "^5.16.6",
"astro-icon": "^1.1.5",
"bulma": "^1.0.4",
"typescript": "^5.9.3"
},
"volta": {
"node": "24.12.0",
"pnpm": "10.26.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.6",
"@types/ace": "^0.0.52",
"prettier": "3.7.4",
"prettier-plugin-astro": "0.14.1"
}
}