-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.62 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
{
"name": "all_in_one",
"version": "1.0.0",
"description": "",
"main": "server/server.js",
"scripts": {
"start": "node server/server.js",
"client:dev": "cd client && npm run dev",
"server:watch": "cd server && npm run watch",
"develop": "concurrently \"npm run server:watch\" \"npm run client:dev\"",
"render-install": "npm install --prefix server && npm install --prefix client ",
"seed": "npm run seed --prefix server",
"build": "npm run build --prefix client",
"render": "npm run render-install && npm run build"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/react": "^18.2.56",
"@types/react-dom": "^18.2.19",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.18",
"concurrently": "^5.3.0",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"nodemon": "^2.0.6",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
"vite": "^5.1.4"
},
"dependencies": {
"@apollo/client": "^3.7.14",
"@apollo/server": "^4.7.1",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/line-clamp": "^0.4.4",
"@tailwindcss/typography": "^0.5.10",
"bcrypt": "^5.1.1",
"dotenv": "^16.4.5",
"express": "^4.17.2",
"graphql": "^14.0.0 || ^15.0.0 || ^16.0.0",
"jsonwebtoken": "^9.0.2",
"jwt-decode": "^4.0.0",
"mongoose": "^7.0.2",
"react": "^18.2.0",
"react-calendar": "^4.8.0",
"react-dom": "^18.2.0",
"react-modal": "^3.16.1",
"react-router-dom": "^6.22.3"
}
}