-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.43 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
{
"name": "twitch-spotify-song-request",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start:dev": "npx nodemon",
"build": "tsc -p .",
"start": "yarn build && node build/index.js",
"start:prod": "node build/index.js",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/brilvio/twitch-spotify-song-request.git"
},
"keywords": [],
"author": "Fernando Derkoski de Souza",
"license": "MIT",
"bugs": {
"url": "https://github.com/brilvio/twitch-spotify-song-request/issues"
},
"homepage": "https://github.com/brilvio/twitch-spotify-song-request#readme",
"devDependencies": {
"@types/node": "^18.11.18",
"@types/spotify-web-api-node": "^5.0.7",
"@types/tmi.js": "^1.8.2",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"eslint": "^8.0.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-standard-with-typescript": "^27.0.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"nodemon": "^2.0.20",
"prettier": "^2.8.3",
"ts-node": "^10.9.1",
"typescript": "*"
},
"dependencies": {
"@types/express": "^4.17.15",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"spotify-web-api-node": "^5.0.2",
"tmi.js": "^1.8.5"
}
}