-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.75 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
{
"name": "serverlesssalah",
"version": "1.0.0",
"description": "A serverless http triggered application to get the exact date and time in an ISO 8601 format for any of the five daily prayers at any location and date.",
"scripts": {
"test": "npm run build && npm run compose && npm run jest-test",
"copy-to-dist": "copyfiles -e \"src/local.settings.json\" --up 1 \"src/**/*.json\" dist && copyfiles package.json package-lock.json dist",
"build": "npm run clean && tsc && npm run copy-to-dist",
"watch": "tsc --w",
"build:docker": "docker build --tag doniseferi/serverlesssalah:latest .",
"compose": "npm run build && docker-compose build && docker-compose up -d --remove-orphans",
"prestart": "npm run build",
"start:host": "func start",
"start": "cd dist && func extensions install && npm run start:host watch",
"lint": "eslint . --ext .ts --fix",
"pretty": "prettier --config .prettierrc.json --write \"./**/*.{js,ts,json,md}\"",
"clean": "npm install && rimraf dist",
"jest-test": "jest --testRegex \"\\.test\\.ts$\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/doniseferi/serverlesssalah.git"
},
"author": "Edonis Seferi <doni.seferi@gmail.com>",
"license": "ISC",
"dependencies": {
"salahtimes": "^1.1.15"
},
"devDependencies": {
"@azure/functions": "^1.2.2",
"@types/jest": "^26.0.9",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"axios": "^0.20.0",
"copyfiles": "^2.3.0",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.2.2",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"ts-jest": "^26.1.4",
"typescript": "^3.9.7"
}
}