-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
59 lines (59 loc) · 1.63 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
{
"name": "twitch-spotify-request",
"version": "5.0.1",
"description": "Bot to scrape Twitch chat for Spotify links, then add them to a playlist",
"main": "dist/index.js",
"author": "Marc Donald",
"license": "MIT",
"scripts": {
"test": "echo \"Error: no test specified\"",
"build": "npm run tsc",
"tsc": "tsc",
"start": "node dist/index.js",
"dev": "npm run build && npm start",
"start:dev": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"lint": "eslint --ignore-path .gitignore .",
"lint:fix": "eslint --ignore-path .gitignore --fix .",
"lint:staged": "lint-staged --allow-empty",
"format": "prettier --check --ignore-path .gitignore .",
"format:fix": "prettier --check --write --ignore-path .gitignore .",
"prepare": "husky install"
},
"dependencies": {
"express": "4.18.2",
"fs": "0.0.1-security",
"spotify-web-api-node": "5.0.2",
"tmi.js": "1.8.5"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@marcdonald/commitlint-config": "1.1.2",
"@marcdonald/eslint-config": "2.1.2",
"@marcdonald/lint-staged-config": "1.0.2",
"@marcdonald/prettier-config": "1.1.2",
"@types/express": "4.17.17",
"@types/node": "18.15.10",
"@types/spotify-web-api-node": "5.0.7",
"@types/tmi.js": "1.8.3",
"dotenv": "16.0.3",
"eslint": "8.36.0",
"husky": "8.0.3",
"lint-staged": "13.2.0",
"nodemon": "2.0.22",
"pkg": "^5.8.1",
"prettier": "2.0.5",
"ts-node": "10.9.1",
"typescript": "5.0.2",
"zod": "^3.21.4"
},
"engines": {
"node": ">=16",
"npm": ">=8"
},
"prettier": "@marcdonald/prettier-config",
"eslintConfig": {
"extends": [
"@marcdonald/eslint-config"
]
}
}