-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.54 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
{
"name": "concerts-near-me",
"version": "1.0.0",
"description": "Create playlists based on upcoming concerts",
"main": "src/commands/main.ts",
"scripts": {
"initialize": "cp .env.example .env && cp playlists.example.json playlists.json",
"cp:playlists:ci": "cp playlists.ci.json playlists.json",
"start": "yarn update-auth && yarn main",
"serve": "ts-node src/express.ts",
"auth": "ts-node src/commands/auth.ts",
"main": "ts-node src/commands/main.ts",
"update-auth": "start-server-and-test serve http://localhost:8888 auth",
"test": "ava",
"generate-mock": "ts-node src/bin/generate-mock-scrape-payloads.ts"
},
"keywords": [
"spotify",
"concert",
"playlist"
],
"author": "Joshua Yoes",
"license": "ISC",
"dependencies": {
"axios": "^0.24.0",
"axios-retry": "^3.2.4",
"cheerio": "^1.0.0-rc.10",
"cli-color": "^2.0.1",
"dotenv": "^14.1.1",
"envfile": "^6.17.0",
"express": "^4.17.2",
"request": "^2.88.2",
"spotify-web-api-node": "^5.0.2",
"typescript": "^4.5.4",
"yargs": "^17.3.1",
"zod": "^3.11.6"
},
"devDependencies": {
"@ava/typescript": "^3.0.1",
"@types/cli-color": "^2.0.2",
"@types/express": "^4.17.13",
"@types/node": "^17.0.9",
"@types/request": "^2.48.8",
"@types/spotify-web-api-node": "^5.0.6",
"@types/yargs": "^17.0.8",
"ava": "^4.0.1",
"start-server-and-test": "^1.14.0",
"ts-node": "^10.4.0"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}