-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.91 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.91 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
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "scholarly",
"version": "1.0.0",
"description": "### Project Title: Scholarly",
"main": "index.js",
"scripts": {
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"dev:server": "nodemon src/server/index.ts",
"dev:client": "cd src/client && next dev",
"start": "concurrently \"npm run start:server\" \"npm run start:client\"",
"start:server": "ts-node src/server/index.ts",
"start:client": "cd src/client && next start",
"build": "concurrently \"npm run build:server\" \"npm run build:client\"",
"build:server": "ts-node src/server/index.ts",
"build:client": "cd src/client && next build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UofT-UTSC-CS-sandbox/project-docker_demons.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/UofT-UTSC-CS-sandbox/project-docker_demons/issues"
},
"homepage": "https://github.com/UofT-UTSC-CS-sandbox/project-docker_demons#readme",
"dependencies": {
"@auth0/auth0-react": "^2.0.1",
"@auth0/nextjs-auth0": "^2.0.0",
"@fullcalendar/daygrid": "^6.1.5",
"@fullcalendar/react": "^6.1.5",
"@react-pdf-viewer/core": "^3.12.0",
"@react-pdf-viewer/default-layout": "^3.12.0",
"@react-three/drei": "^9.56.28",
"@react-three/fiber": "^8.11.5",
"@react-three/postprocessing": "^2.7.0",
"@sendgrid/client": "^7.7.0",
"@sendgrid/helpers": "^7.7.0",
"@sendgrid/mail": "^7.7.0",
"@types/express-session": "^1.17.7",
"@types/react": "^18.0.28",
"axios": "^1.3.4",
"bcrypt": "^5.1.0",
"body-parser": "^1.20.2",
"bootstrap": "^5.2.3",
"classnames": "^2.3.2",
"concurrently": "^7.6.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"dotenv-vault": "^1.18.0",
"express": "^4.18.2",
"express-session": "^1.17.3",
"fs": "^0.0.1-security",
"highlight.js": "^11.7.0",
"moment": "^2.29.4",
"next": "^13.2.3",
"pdfjs-dist": "^3.5.141",
"peerjs": "^1.4.7",
"pg": "^8.9.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-datetime": "^3.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.8.0",
"react-modal": "^3.16.1",
"react-simple-maps": "^3.0.0",
"react-toastify": "^9.1.2",
"sass": "^1.58.3",
"sass-loader": "^13.2.0",
"sequelize": "^6.29.0",
"three": "^0.151.2",
"twilio": "^4.9.0",
"typewriter-effect": "^2.19.0"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@types/body-parser": "^1.19.2",
"@types/express": "^4.17.17",
"@types/node": "^18.14.6",
"@types/pg": "^8.6.6",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/three": "^0.150.0",
"concurrently": "^7.6.0",
"eslint": "8.35.0",
"eslint-config-next": "13.2.3",
"identity-obj-proxy": "^3.0.0",
"nodemon": "^2.0.21",
"prettier": "^2.8.7",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}