-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (65 loc) · 2.46 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "nextjs-fastapi",
"version": "0.1.0",
"private": true,
"scripts": {
"__FastAPI_SCRIPTS__": "FastAPI 스크립트",
"fastapi-dev-window": "pip install -r requirements.txt && python -m uvicorn api.main:app --reload",
"fastapi-dev": "pip3 install -r requirements.txt && python3 -m uvicorn api.main:app --reload",
"fastapi-start-window": "python -m uvicorn api.main:app --reload",
"fastapi-start": "python3 -m uvicorn api.main:app --reload",
"_NextJS_SCRIPTS": "NextJS 스크립트",
"next-dev": "next dev",
"build": "next build",
"next-start": "next start",
"next-deploy": "next start -p 80",
"__DEV_SCRIPTS_CONCURRENTLY__": "Development 동시 실행 스크립트",
"dev-window": "concurrently \"npm run next-dev\" \"npm run fastapi-dev-window\"",
"dev": "concurrently \"npm run next-dev\" \"npm run fastapi-dev\"",
"__CONCURRENTLY_START_SCRIPTS__": "Start 동시 실행 스크립트",
"start-window": "concurrently \"npm run next-start\" \"npm run fastapi-start-window\"",
"start": "concurrently \"npm run next-start\" \"npm run fastapi-start\"",
"__CONCURRENTLY_DEPLOY_SCRIPTS__": "Deploy 동시 실행 스크립트",
"deploy-window": "concurrently \"npm run next-deploy\" \"npm run fastapi-start-window\"",
"deploy": "concurrently \"npm run next-deploy\" \"npm run fastapi-start\"",
"lint": "next lint"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.6",
"@mui/joy": "^5.0.0-beta.3",
"@mui/material": "^5.14.6",
"@types/node": "20.2.4",
"@types/react": "18.2.7",
"@types/react-dom": "18.2.4",
"autoprefixer": "10.4.14",
"axios": "^1.5.0",
"concurrently": "^8.2.1",
"eslint": "8.41.0",
"eslint-config-next": "13.4.4",
"focus-trap-react": "^10.2.1",
"framer-motion": "^10.16.2",
"next": "13.4.4",
"postcss": "8.4.23",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-query": "^3.39.3",
"react-router-dom": "^6.16.0",
"tailwindcss": "3.3.2",
"typescript": "5.0.4"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/line-clamp": "^0.4.2",
"@tailwindcss/typography": "^0.5.9",
"@types/ms": "^0.7.31",
"autoprefixer": "^10.4.13",
"concurrently": "^8.2.1",
"postcss": "^8.4.21",
"prettier": "^2.8.2",
"prettier-plugin-tailwindcss": "^0.2.1",
"prisma": "^4.13.0",
"tailwindcss": "^3.2.4"
}
}