-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
66 lines (66 loc) · 1.97 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
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.0",
"alexa-app": "^4.2.3",
"apollo-boost": "^0.4.9",
"confusables": "^1.1.1",
"cross-fetch": "^4.0.0",
"graphql": "^16.9.0",
"graphql-tag": "^2.12.6"
},
"devDependencies": {
"@favware/graphql-pokemon": "^8.6.1",
"@sapphire/eslint-config": "^5.0.5",
"@sapphire/prettier-config": "^2.0.0",
"@sapphire/ts-config": "^5.0.1",
"@types/express": "^5.0.0",
"@types/node": "^22.8.7",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"@vitest/coverage-v8": "^2.1.4",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"express": "^4.21.1",
"lint-staged": "^15.2.10",
"npm-run-all2": "^7.0.1",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"supertest": "^7.0.0",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.5.2",
"vite": "^5.4.10",
"vitest": "^2.1.4"
},
"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.5.1"
}