-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
49 lines (49 loc) · 1.34 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": "spotify-lyrics-viewer",
"version": "1.0.0",
"description": "",
"main": "build/index.js",
"scripts": {
"dev": "ts-node-dev --inspect --respawn --transpileOnly src/index.ts",
"build": "tsc",
"render-postbuild": "cd client && npm install && npm run build",
"start": "node .",
"prettier": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/brentvollebregt/spotify-lyrics-viewer.git"
},
"keywords": [],
"author": "Brent Vollebregt",
"license": "",
"bugs": {
"url": "https://github.com/brentvollebregt/spotify-lyrics-viewer/issues"
},
"homepage": "https://github.com/brentvollebregt/spotify-lyrics-viewer#readme",
"dependencies": {
"@types/cheerio": "^0.22.13",
"@types/cookie-session": "^2.0.41",
"@types/diacritics": "^1.3.1",
"@types/express": "^4.17.1",
"@types/node": "^12.11.1",
"@types/spotify-web-api-node": "^4.0.1",
"axios": "^0.21.1",
"cheerio": "^1.0.0-rc.3",
"cookie-session": "^1.4.0",
"diacritics": "^1.3.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"lrc-kit": "1.1.1",
"spotify-web-api-node": "^4.0.0",
"typescript": "^3.9.4"
},
"devDependencies": {
"prettier": "^3.2.4",
"ts-node-dev": "^1.0.0-pre.43",
"tslint": "^5.20.0"
},
"engines": {
"node": ">=17.0.0"
}
}