-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.31 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.31 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
{
"name": "astro-python",
"version": "0.0.1",
"description": "Simple python application template using WebUI, Astro and TailwindCSS",
"repository": "http://github.com/SvalTek/astro-python",
"author": "Therosin <SvalTek>",
"license": "MIT",
"private": true,
"packageManager": "yarn@1.22.10",
"workspaces": [
"packages/*"
],
"scripts": {
"astro": "yarn workspace @astro-python/astro astro",
"astroapp": "yarn workspace @astro-python/astro",
"astro:dev": "yarn workspace @astro-python/astro dev",
"build": "yarn workspace @astro-python/astro build",
"test-python": "python -m pytest ./packages/python_app/tests",
"start": "poetry run python ./packages/python_app/main.py",
"poetry": "poetry",
"package": "yarn build && yarn build:python-package",
"build:python-package": "pyinstaller ./astro-python.spec",
"postinstall": "poetry install"
},
"dependencies": {},
"devDependencies": {
"@types/node": "20.11.21",
"@types/uuid": "^9.0.8",
"chalk": "^4.1.1",
"command-exists": "^1.2.9",
"cross-spawn": "^7.0.3",
"file-uri-to-path": "^2.0.0",
"fs-extra": "^11.1.0",
"jest": "^29.4.1",
"lodash": "4.17.21",
"mock-fs": "^5.2.0",
"rimraf": "5.0.5",
"string-dedent": "^3.0.1",
"typescript": ">=2.7",
"uuid": "^9.0.1"
}
}