-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
48 lines (48 loc) · 1.43 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
{
"name": "spotistats-api",
"version": "1.0.0",
"description": "The official API for the Spotistats app (Android + iOS) 💚",
"main": "src/index.js",
"scripts": {
"eslint": "eslint",
"compile": "tsc -p .",
"start:dev": "nodemon -r dotenv/config src/index.js dotenv_config_path=./src/config/.env.development",
"start": "ts-node src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Sjoerd Bolten",
"license": "",
"dependencies": {
"@google-cloud/storage": "^5.7.2",
"@types/body-parser": "^1.19.0",
"body-parser": "^1.19.0",
"chalk": "^4.1.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-fileupload": "^1.2.0",
"jsonwebtoken": "^8.5.1",
"node-cron": "^2.0.3",
"node-fetch": "^2.6.1",
"node-schedule": "^1.3.2",
"nodemon": "^2.0.6",
"pg": "^8.4.0",
"reflect-metadata": "^0.1.13",
"spotify-web-api-node": "^5.0.0",
"ts-node": "^9.1.1",
"typeorm": "^0.2.28",
"typescript": "^4.1.3"
},
"devDependencies": {
"@types/express": "^4.17.8",
"@types/express-fileupload": "^1.1.6",
"@types/luxon": "^1.25.0",
"@types/node": "^14.14.13",
"@types/node-cron": "^2.0.3",
"@types/node-fetch": "^2.5.7",
"@types/node-schedule": "^1.3.1",
"@types/spotify-web-api-node": "^4.0.1",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"eslint": "^7.10.0"
}
}