-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.98 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.98 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@favware/dexa",
"version": "3.0.0",
"description": "Amazing pokedex skill for Alexa",
"author": "@favware",
"license": "MIT",
"private": true,
"scripts": {
"lint": "eslint src scripts tests --ext ts --fix",
"prettier": "prettier --ignore-path=.prettierignore",
"format": "prettier --write src scripts",
"test": "vitest run",
"build": "tsc -b src",
"watch": "tsc -b src -w",
"update": "yarn upgrade-interactive --latest",
"deploy": "tsup && cd bundle && zip -rq function.zip . && aws lambda update-function-code --function-name alexa_dexa --zip-file fileb://function.zip",
"scripts:skilldatagenerator": "yarn tsx scripts/skillDataGenerator.ts"
},
"dependencies": {
"@sapphire/utilities": "^3.18.2",
"alexa-app": "^4.2.3",
"apollo-boost": "^0.4.9",
"confusables": "^1.1.1",
"cross-fetch": "^4.1.0",
"graphql": "^16.13.1",
"graphql-tag": "^2.12.6"
},
"devDependencies": {
"@favware/graphql-pokemon": "^8.7.3",
"@sapphire/eslint-config": "^5.0.6",
"@sapphire/prettier-config": "^2.0.0",
"@sapphire/ts-config": "^5.0.3",
"@types/express": "^5.0.6",
"@types/node": "^24.12.0",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"@vitest/coverage-v8": "^4.1.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"express": "^5.2.1",
"lint-staged": "^16.4.0",
"npm-run-all2": "^8.0.4",
"prettier": "^3.8.1",
"rimraf": "^6.1.3",
"supertest": "^7.2.2",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.5.2",
"vite": "^7.3.1",
"vitest": "^4.1.0"
},
"resolutions": {
"ansi-regex": "^5.0.1",
"minimist": "^1.2.8"
},
"engines": {
"node": ">=v20"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write",
"*.{mjs,js,ts}": "eslint --fix --ext mjs,js,ts"
},
"packageManager": "yarn@4.13.0"
}