-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.23 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
{
"name": "athan-alexa",
"version": "1.0.0",
"description": "Alexa skill to set athan reminders",
"author": "ahmednkhan24",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/ahmednkhan24/athan-alexa"
},
"main": "index.js",
"scripts": {
"test": "jest --coverage",
"lint": "eslint 'src/**/*.{js,ts}' --fix",
"pretty": "prettier 'src/**/*.{js,ts}' --write",
"typecheck": "tsc --project tsconfig.prod.json",
"precompile": "rm -rf dist",
"compile": "tsc -p tsconfig.prod.json",
"postcompile": "cp package.json dist && cp package-lock.json dist",
"predev": "npm run compile",
"dev": "node ./dist/dev.js"
},
"dependencies": {
"ask-sdk-core": "^2.3.0",
"ask-sdk-model": "^1.11.1",
"axios": "^0.21.0",
"i18next": "^15.0.5",
"moment-timezone": "^0.5.32"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"eslint": "^7.24.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"jest": "27.1.0",
"prettier": "^2.2.1",
"ts-jest": "^27.1.0",
"typescript": "^4.5.2"
}
}