-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.11 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.11 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
{
"name": "glowpath-app",
"version": "1.0.0",
"description": "Glowpath server and client app",
"main": "server/dist/index.js",
"scripts": {
"start": "npm --prefix server run start",
"build": "npm --prefix server run build",
"-postbuild": "npm run build",
"dev": "npm --prefix server run dev"
},
"dependencies": {
"@types/cors": "^2.8.17",
"@types/nodemailer": "^6.4.17",
"axios": "^1.7.8",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.4.6",
"express": "^4.21.1",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.11.0",
"mongoose": "^8.8.3",
"nodemailer": "^6.9.16",
"socket.io": "^4.8.1",
"twilio": "^5.3.6",
"uuid": "^11.0.3"
},
"devDependencies": {
"typescript": "^4.5.0",
"@types/mongoose": "^5.11.97",
"@types/express": "^4.17.13",
"@types/dotenv": "^8.2.0",
"@types/bcrypt": "^5.0.0",
"@types/jsonwebtoken": "^8.5.0",
"@types/cors": "^2.8.12",
"@types/axios": "^0.14.0",
"@types/uuid": "^8.3.4",
"@types/node": "^16.0.0",
"@types/socket.io": "^3.0.2"
},
"engines": {
"node": "16.x"
}
}