-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.58 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
59
60
{
"name": "fonz-api",
"version": "2.0.0",
"description": "API for Fonz Music",
"scripts": {
"start": "npm run dev",
"build": "npm run clean && tsc",
"dev": "nodemon ./src/App.ts",
"dev-js": "nodemon ./src/App.js",
"clean": "rimraf ./dist",
"reset": "git pull && git checkout . && npm i && npm run build"
},
"engines": {
"node": "16"
},
"repository": {
"type": "git",
"url": "https://github.com/mangledbottles/fonz-api"
},
"author": "Fonz Music",
"license": "MIT",
"bugs": {
"url": "https://github.com/mangledbottles/fonz-api/issues"
},
"homepage": "https://github.com/mangledbottles/fonz-api",
"dependencies": {
"axios": "^0.21.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"express": "~4.16.1",
"express-rate-limit": "^5.2.6",
"http-errors": "~1.6.3",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.19",
"morgan": "^1.10.0",
"mysql": "^2.18.1",
"npm": "^7.20.1",
"reflect-metadata": "^0.1.13",
"spotify-web-api-node": "^5.0.2",
"typeorm": "^0.2.34",
"uuid": "^8.3.2",
"winston": "^3.3.3",
"winston-cloudwatch": "^3.1.0"
},
"devDependencies": {
"@types/cors": "^2.8.6",
"@types/express": "^4.17.6",
"@types/jsonwebtoken": "^8.5.4",
"@types/winston": "^2.4.4",
"aws-sdk": "^2.1024.0",
"nodemon": "^2.0.7",
"ts-node-dev": "^1.1.6",
"tslint": "^5.12.0",
"typescript": "^4.4.2"
},
"private": true
}