-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 888 Bytes
/
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
{
"name": "express",
"version": "1.0.0",
"main": "index.js",
"author": "Shreyaan",
"license": "MIT",
"type": "module",
"private": true,
"scripts": {
"start": "node dist/index.js",
"build": "tsc",
"dev": "tsc -w & nodemon dist/index.js",
"nodemon": "nodemon dist/index.js"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.16",
"@types/jsonwebtoken": "^9.0.1",
"@types/multer": "^1.4.7",
"@types/node": "^18.11.18",
"@types/sharp": "^0.31.1",
"typescript": "^4.9.4"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"firebase": "^9.16.0",
"jsonwebtoken": "^9.0.0",
"mongoose": "^6.8.2",
"multer": "^1.4.5-lts.1",
"nanoid": "^4.0.0",
"redis": "^4.6.3",
"sharp": "^0.31.3",
"slugify": "^1.6.5",
"uuid": "^9.0.0"
}
}