-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.41 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.41 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
{
"name": "q_a",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"clean": "npx rimraf ./build",
"start": "node build/server.js",
"zip": "tar.exe -a -c -f q_a-backend.zip build package.json scripts src .platform .npmrc .ebextensions",
"deploy": "start deploy.bat",
"ebs": "start ebs.bat",
"dist": "sh ./scripts/build.sh",
"server": "tsc-watch --outDir ./build --onSuccess \"npm run start -- --mode=http\" --onFailure \"echo ERROR! Compilation Failed\""
},
"author": "Arpit Nakarani",
"license": "ISC",
"dependencies": {
"@types/body-parser": "^1.19.2",
"@types/config": "^0.0.41",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"aws-sdk": "^2.1206.0",
"axios": "^0.27.2",
"bcryptjs": "^2.4.3",
"config": "^3.3.7",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.1",
"http": "^0.0.1-security",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"moment-timezone": "^0.5.37",
"mongoose": "^6.4.1",
"multer": "^1.4.2",
"multer-s3": "^2.9.0",
"multer-s3-transform": "^2.10.3",
"node-gcm": "^1.0.5",
"nodemailer": "^6.7.8",
"sharp": "^0.30.7",
"winston": "^3.8.1"
},
"devDependencies": {
"@types/node": "^18.0.0",
"nodemon": "^2.0.18",
"rimraf": "^3.0.2",
"ts-node": "^10.8.1",
"tsc-watch": "^5.0.3",
"typescript": "^4.7.4"
}
}