-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.33 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.33 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
{
"name": "pytranspleet",
"version": "1.0.0",
"description": "",
"source": "./public/index.html",
"scripts": {
"start": "concurrently --kill-others -n REACT,APP -c bgGreen.bold,bgBlue.bold \"pnpm start:react\" \"pnpm start:python\"",
"start:react": "parcel watch .",
"start:python": "poetry run app",
"build:react": "parcel build --public-url .",
"build:python": "poetry build",
"serve:react": "parcel serve",
"test:python": "poetry run pytest tests",
"lint:python": "poetry run ruff check backend tests",
"lint:python:fix": "poetry run ruff check --fix backend tests",
"lint:react": "eslint .",
"tox": "poetry run tox"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@emotion/react": "^11.13.0",
"@emotion/styled": "^11.13.0",
"@mui/material": "^5.16.7",
"@wavesurfer/react": "^1.0.7",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^5.5.4",
"wavesurfer.js": "^7.8.2",
"zustand": "^4.5.5"
},
"devDependencies": {
"@parcel/packager-raw-url": "^2.12.0",
"@parcel/transformer-webmanifest": "^2.12.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"concurrently": "^8.2.2",
"eslint": "^9.8.0",
"eslint-plugin-react": "^7.35.0",
"parcel": "^2.12.0",
"process": "^0.11.10"
}
}