-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 952 Bytes
/
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
{
"name": "tunedin-backend",
"version": "0.1.0",
"description": "",
"contributors": [],
"type": "module",
"devDependencies": {
"@types/jsonwebtoken": "^9.0.1",
"@types/koa": "^2.13.5",
"@types/koa__router": "^12.0.0",
"@types/koa-bodyparser": "^4.3.10",
"prettier": "^2.8.3",
"ts-node": "^10.9.1",
"typedoc": "^0.22.16",
"typescript": "^4.7.2"
},
"scripts": {
"start": "ts-node src/index.ts",
"lint": "prettier --check .",
"fix": "prettier --write ."
},
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@koa/router": "^12.0.0",
"@types/xml2js": "^0.4.11",
"axios": "^1.2.3",
"dotenv": "^16.0.3",
"jsonwebtoken": "^9.0.0",
"koa": "^2.14.1",
"koa-bodyparser": "^4.3.0",
"koa-jwt": "^4.0.4",
"mongodb": "^3.7.3",
"reflect-metadata": "^0.1.13",
"spotify-web-api-node": "^5.0.2",
"typeorm": "^0.3.11",
"xml2js": "^0.4.23"
}
}