-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 3.12 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "be-strong-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build-server": "rimraf build && tsc -p tsconfig.server.json",
"build-client": "rimraf dist && tsc && vite build",
"build": "npm run build-server && npm run build-client",
"start:prod:local": "NODE_ENV=production node ./build/server/index.js",
"build:start:local": "npm run build && npm run run:prod:local",
"prisma": "npx prisma generate && npx prisma migrate deploy && npx prisma db seed",
"start:prod": "npm run prisma && node ./build/server/index.js",
"dev-server": "npx nodemon ./src/server/index.ts",
"dev-client": "vite",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/javierxbrenes1/be-strong-app-backend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/javierxbrenes1/be-strong-app-backend/issues"
},
"homepage": "https://github.com/javierxbrenes1/be-strong-app-backend#readme",
"dependencies": {
"@apollo/client": "^3.7.10",
"@apollo/server": "^4.3.2",
"@as-integrations/fastify": "^1.3.0",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@fastify/compress": "^6.4.0",
"@fastify/cors": "^8.2.1",
"@fastify/jwt": "^8.0.0",
"@fastify/static": "^6.11.2",
"@graphql-tools/merge": "^8.3.16",
"@graphql-tools/schema": "^9.0.19",
"@graphql-tools/utils": "^9.2.1",
"@mdxeditor/editor": "^0.21.0",
"@mui/icons-material": "^5.11.11",
"@mui/material": "^5.11.10",
"@mui/styled-engine-sc": "^5.11.9",
"@mui/utils": "^5.11.12",
"@mui/x-date-pickers": "^6.0.4",
"@paljs/plugins": "^6.0.7",
"@prisma/client": "^5.3.1",
"@uiw/react-md-editor": "^3.23.5",
"bcrypt": "^5.1.0",
"chart.js": "^4.2.1",
"dayjs": "^1.11.7",
"eslint-config-wesbos": "^3.2.3",
"fastify": "^4.12.0",
"graphql": "^16.6.0",
"graphql-middleware": "^6.1.33",
"i": "^0.3.7",
"install": "^0.13.0",
"js-base64": "^3.7.5",
"npm": "^9.6.4",
"react": "^18.2.0",
"react-big-calendar": "^1.6.8",
"react-chartjs-2": "^5.2.0",
"react-contenteditable": "^3.3.7",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.2.0",
"react-markdown": "^8.0.7",
"react-qr-code": "^2.0.11",
"react-router": "^6.8.2",
"react-router-dom": "^6.8.2",
"react-svg": "^16.1.20",
"react-toastify": "^9.1.2",
"react-zoom-pan-pinch": "^3.4.2",
"rehype-sanitize": "^6.0.0",
"remark-gfm": "^3.0.1",
"simple-zustand-devtools": "^1.1.0",
"styled-components": "^5.3.6",
"zustand": "^4.3.8"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/node": "^18.11.18",
"@types/react": "^18.0.27",
"@types/react-big-calendar": "^1.6.4",
"@types/react-copy-to-clipboard": "^5.0.4",
"@types/react-dom": "^18.0.10",
"@vitejs/plugin-react": "^3.1.0",
"nodemon": "^3.1.0",
"prisma": "^5.3.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"vite": "^4.1.0"
},
"prisma": {
"seed": "node ./prisma/seed.js"
}
}