forked from MohammedArab1/ThaqalaynAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.19 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
{
"name": "thaqalayn-api",
"version": "1.0.0",
"description": "API for hadiths found on the thaqalayn.net website",
"main": "index.js",
"scripts": {
"start": "node src/index.js",
"test": "echo \\\"Error: no test specified\\\" && exit 1\"",
"dev": "nodemon src/index.js",
"build:ui": "rm -rf build && cd ../thaqalayn-api-frontend && npm run build && cp -r build ../Thaqalayn-API",
"deploy:full": "npm run build:ui && git add . && git commit -m 'uibuild' && git push",
"serverlessDeploy": "dotenv cross-var set AWS_ACCESS_KEY_ID=%AWS_ACCESS_KEY_ID% && set AWS_SECRET_ACCESS_KEY=%AWS_SECRET_ACCESS_KEY% && serverless deploy ",
"modifyAllBooks:full": "modifyDbScript.sh",
"modifyOneBook": "modifyDbPerBookScript.sh"
},
"author": "Mohammed Arab",
"license": "ISC",
"dependencies": {
"aws-serverless-express": "^3.4.0",
"axios": "^0.27.2",
"cors": "^2.8.5",
"cross-var": "^1.1.0",
"dotenv": "^16.0.3",
"dotenv-cli": "^6.0.0",
"express": "^4.18.1",
"mongoose": "^6.6.2",
"mongoose-simple-random": "^0.4.1",
"serverless-http": "^3.1.0"
},
"devDependencies": {
"nodemon": "^2.0.20",
"serverless-domain-manager": "^6.2.0"
}
}