forked from stingalleman/spotistats-api-1
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.37 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
{
"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 .",
"compile:watch": "tsc -p . -w",
"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.8.0",
"@prisma/client": "^2.17.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-fileupload": "^1.2.1",
"jsonwebtoken": "^8.5.1",
"os-utils": "^0.0.14",
"pg": "^8.5.1",
"reflect-metadata": "^0.1.13",
"spotify-web-api-node": "^5.0.2"
},
"devDependencies": {
"@types/express": "^4.17.8",
"@types/express-fileupload": "^1.1.6",
"@types/jsonwebtoken": "^8.5.0",
"@types/luxon": "^1.25.0",
"@types/node": "^14.14.31",
"@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",
"prisma": "^2.17.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.5"
}
}