-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.53 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "florist",
"version": "0.0.1",
"private": true,
"scripts": {
"fastapi-dev": "python -m poetry install --with test && python -m uvicorn florist.api.server:app --reload --log-level debug",
"fastapi-prod": "python -m poetry install && python -m uvicorn florist.api.server:app --workers 4",
"next-dev": "next dev florist",
"dev": "concurrently \"npm run next-dev\" \"npm run fastapi-dev\"",
"prod": "concurrently \"npm run next-dev\" \"npm run fastapi-prod\"",
"build": "next build",
"start": "next start",
"lint": "next lint florist",
"prettier": "prettier florist/app florist/tests/unit/app --write",
"unit-test": "jest --coverage florist/tests/unit/",
"integration-test": "jest --coverage florist/tests/integration/"
},
"dependencies": {
"@popperjs/core": "^2.11.8",
"@types/node": "20.2.4",
"@types/react": "18.2.7",
"@types/react-dom": "18.2.4",
"autoprefixer": "10.4.14",
"concurrently": "^8.0.1",
"eslint": "8.41.0",
"eslint-config-next": "13.4.4",
"immer": "^10.1.1",
"next": "14.2.21",
"postcss": "8.4.31",
"prettier": "^3.2.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"swr": "^2.2.5",
"tailwindcss": "3.3.2",
"typescript": "5.0.4",
"use-immer": "^0.9.0",
"yarn": "^1.22.21"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^15.0.4",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"next-router-mock": "^0.9.13",
"ts-node": "^10.9.2"
}
}