-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.33 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
{
"name": "music-app",
"version": "1.1.0",
"description": "API for Music App",
"main": "index.js",
"scripts": {
"dev": "nodemon src/index.js --exec babel-node",
"build": "babel src --out-dir build",
"start": "node build/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Music-App-Platzi/Music-App-Backend.git"
},
"keywords": [],
"author": "seekers",
"license": "ISC",
"bugs": {
"url": "https://github.com/Music-App-Platzi/Music-App-Backend/issues"
},
"homepage": "https://github.com/Music-App-Platzi/Music-App-Backend#readme",
"dependencies": {
"@babel/polyfill": "^7.12.1",
"aws-sdk": "^2.775.0",
"bcrypt": "^5.0.0",
"bcryptjs": "^2.4.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^4.1.1",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"pg": "^8.4.1",
"pg-hstore": "^2.3.3",
"regenerator-runtime": "^0.13.7",
"sequelize": "^6.3.5"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/node": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"nodemon": "^2.0.5"
},
"browserslist": [
"last 3 and_chr versions",
"last 3 chrome versions",
"last 3 opera versions",
"last 3 ios_saf versions",
"last 3 safari versions"
]
}