-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.14 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
{
"name": "RouteOne",
"version": "1.0.0",
"description": "Route One Pokemon Skill",
"main": "index.js",
"dependencies": {
"alexa-sdk": "^1.0.0",
"gender-detection-from-name": "^1.7.4",
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/node": "^18.15.13",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"eslint": "^8.38.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-eslint": "^7.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.7",
"typescript": "^5.0.4"
},
"scripts": {
"build:clean": "rm -rf dist && yarn build",
"build": "tsc",
"zip": "rm -f dist.zip && zip -r dist.zip .",
"postbuild": "cp package.json dist/package.json && cd dist && yarn install --production && yarn zip",
"lint": "eslint --fix --cache --no-error-on-unmatched-pattern --ext ts src"
},
"author": "Colin Mosher",
"license": "SEE LICENSE IN license.md"
}