-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.74 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.74 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
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
71
72
73
74
75
76
77
78
79
80
81
{
"name": "campusconnect.web-turborepo",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "dotenv -- turbo dev",
"dev:admin": "dotenv -- turbo dev --filter admin-frontend",
"dev:app": "dotenv -- turbo dev --filter frontend",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\""
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.14.19",
"@mui/joy": "^5.0.0-beta.18",
"@mui/material": "^5.14.18",
"@tabler/icons": "^2.44.0",
"@tabler/icons-react": "^2.44.0",
"jotai": "^2.5.1",
"jszip": "^3.10.1",
"next": "13.4.19",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-easy-crop": "^5.0.2",
"react-material-ui-carousel": "^3.4.2",
"react-router-dom": "^6.3.0"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"dotenv-cli": "^7.3.0",
"eslint": "^8",
"eslint-config-next": "14.0.2",
"prettier": "^3.1.0",
"turbo": "latest",
"typescript": "^5"
},
"engines": {
"node": "16.17.0"
},
"workspaces": [
"packages/*"
],
"globalDotEnv": [
".env"
],
"pipeline": {
"dev:admin": {
"outputs": [
"dist/**",
".next/**"
],
"env": [
"NEXT_PUBLIC_ADMIN_APIKEY",
"NEXT_PUBLIC_API_URL"
]
},
"dev:app": {
"outputs": [
"dist/**",
".next/**"
],
"env": [
"NEXT_PUBLIC_ADMIN_APIKEY",
"NEXT_PUBLIC_API_URL"
]
},
"dev": {
"outputs": [
"dist/**",
".next/**"
],
"env": [
"NEXT_PUBLIC_ADMIN_APIKEY",
"NEXT_PUBLIC_API_URL"
]
}
}
}