-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.07 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.07 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
{
"name": "collabify",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write \"{,!(node_modules)/**/}*.{js,jsx}\"",
"test": "jest --watch --detect-openHandles",
"db:migrate": "prisma db push",
"db:view": "prisma studio",
"postinstall": "prisma generate || true"
},
"dependencies": {
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@fullcalendar/common": "^5.11.4",
"@fullcalendar/core": "^5.11.4",
"@fullcalendar/daygrid": "^5.11.4",
"@fullcalendar/interaction": "^5.11.4",
"@fullcalendar/react": "^5.11.4",
"@fullcalendar/timegrid": "^5.11.4",
"@material-ui/core": "^4.12.4",
"@mui/icons-material": "^5.10.9",
"@mui/material": "^5.10.8",
"@mui/styles": "^5.10.10",
"@mui/x-date-pickers": "^5.0.18",
"@prisma/client": "^4.9.0",
"@tippyjs/react": "^4.2.6",
"@types/node": "^18.11.18",
"@types/react-dom": "^18.0.10",
"@vercel/analytics": "^1.1.1",
"bcrypt": "^5.1.0",
"classnames": "^2.3.2",
"framer-motion": "^7.10.0",
"install": "^0.13.0",
"interaction": "^0.0.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"next": "^13.2.4",
"next-transpile-modules": "^10.0.0",
"npm": "^10.2.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-youtube": "^10.1.0",
"styled-components": "^5.3.6",
"tippy.js": "^6.3.7",
"twilio": "^3.83.0",
"typescript": "^4.9.5",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.19.6",
"@types/bcrypt": "^5.0.0",
"@types/jest": "^29.4.0",
"@types/jsonwebtoken": "^9.0.1",
"@types/lodash": "^4.14.191",
"@types/react": "^18.0.1",
"@types/uuid": "^9.0.0",
"dotenv": "^16.0.3",
"eslint": "^8.25.0",
"eslint-config-next": "12.3.1",
"jest": "^29.3.1",
"node-mocks-http": "^1.12.1",
"prettier": "^2.7.1",
"prisma": "^4.9.0",
"ts-jest": "^29.0.5"
}
}