-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.04 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
{
"name": "scope-lex-handler",
"version": "1.0.1",
"description": "AWS Lex/Facebook Messenger powered bot that identifies songs from lyrics/titles.",
"license": "MIT",
"scripts": {
"dev": "nodemon -e ts -w src/ -x 'ts-node src/simulate.ts'",
"test": "echo TODO!",
"build": "cross-env NODE_ENV=production rimraf dist/ && tsc",
"lint": "tslint --type-check --project tsconfig.json || exit 0"
},
"repository": {
"type": "git",
"url": "https://github.com/jch254/scope-lex-handler"
},
"author": "Jordan Hornblow",
"dependencies": {
"lyricist": "^2.2.2",
"node-fetch": "^2.6.0",
"spotify-web-api-node": "^4.0.0"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.57",
"@types/node": "^14.0.14",
"@types/node-fetch": "^2.5.7",
"@types/uuid": "^8.0.0",
"cross-env": "^7.0.2",
"nodemon": "^2.0.4",
"rimraf": "^3.0.2",
"ts-node": "^8.10.2",
"tslint": "^6.1.2",
"tslint-config-airbnb": "^5.11.2",
"tsutils": "3.17.1",
"typescript": "^3.9.5",
"uuid": "^8.2.0"
}
}