-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.83 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
{
"name": "spotify_playlist_guard",
"version": "1.0.0",
"description": "A bot guard for your collaborative playlist on Spotify",
"author": "Marcus",
"license": "MIT",
"main": "main.js",
"scripts": {
"build": "tsc",
"start": "node -r dotenv-expand/config dist/main",
"dev": "nodemon -r dotenv-expand/config src/main.ts",
"lint:fix": "eslint \"src/**/*.ts\" --fix --max-warnings 0",
"lint:check": "eslint \"src/**/*.ts\" --max-warnings 0",
"enable-hooks": "husky install",
"disable-hooks": "husky uninstall",
"test": ""
},
"engines": {
"node": "18.*"
},
"devDependencies": {
"@types/amqplib": "^0.8.2",
"@types/cors": "^2.8.12",
"@types/debug": "^4.1.7",
"@types/express": "^4.17.13",
"@types/morgan": "^1.9.9",
"@types/node": "^17.0.21",
"@types/node-cron": "^3.0.1",
"@types/spotify-web-api-node": "^5.0.6",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.5.4"
},
"dependencies": {
"amqplib": "^0.8.0",
"axios": "^0.26.0",
"cors": "^2.8.5",
"debug": "^4.3.4",
"dotenv": "^16.4.1",
"dotenv-expand": "^10.0.0",
"express": "^4.17.3",
"morgan": "^1.10.0",
"node-cron": "^3.0.0",
"spotify-web-api-node": "^5.0.2",
"zod": "^3.22.4"
}
}