-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
25 lines (25 loc) · 1 KB
/
package.json
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
{
"scripts": {
"format:backend": "cd backend && poetry run format",
"format": "concurrently \"cd frontend && yarn format:all\" \"yarn format:backend\"",
"export": "cd backend && poetry export -f requirements.txt --output requirements.txt --without-hashes && poetry export -f requirements.txt --output ../requirements.txt --without-hashes",
"start:backend": "yarn export && cd backend && poetry run start",
"start:frontend": "cd frontend && yarn start",
"start": "concurrently \"yarn start:frontend\" \"yarn start:backend\"",
"setup:backend": "cd backend && poetry install",
"setup:frontend": "cd frontend && yarn",
"setup": "concurrently \"yarn setup:backend\" \"yarn setup:frontend\""
},
"dependencies": {
"concurrently": "^8.2.0",
"dotenv": "^16.3.1",
"emoji-picker-react": "^4.3.0",
"pdf-lib": "^1.17.1",
"react-signature-canvas": "^1.0.6",
"sass": "^1.50.0"
},
"devDependencies": {
"cypress": "^13.6.0",
"cypress-plugin-api": "^2.11.1"
}
}