-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.38 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
{
"name": "backend-service",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npx tsc",
"compile": "ts-node build.ts && tsc",
"start": "cross-env NODE_OPTIONS='--max-old-space-size=512' ts-node server/index.ts",
"vercel": "vercel dev",
"deploy": "vercel deploy --prod",
"dev": "nodemon --exec npx ts-node server/index.ts --ext ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.238.0",
"@pinata/sdk": "^2.1.0",
"@types/express-fileupload": "^1.2.2",
"@types/jsonwebtoken": "^8.5.8",
"@types/shelljs": "^0.8.11",
"aws-sdk": "^2.1195.0",
"body-parser": "^1.20.0",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"debug": "~2.6.9",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-fileupload": "^1.4.0",
"form-data": "^4.0.0",
"imagekit": "^3.2.5",
"jsonwebtoken": "^8.5.1",
"morgan": "~1.9.1",
"mysql2": "^2.3.3",
"sequelize": "^6.20.1",
"shelljs": "^0.8.5",
"ts-node": "^10.8.0",
"vercel": "^25.1.0"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/node": "^17.0.39",
"concurrently": "^7.2.1",
"nodemon": "^2.0.16",
"typescript": "^4.7.2"
}
}