-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.04 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
{
"name": "music-api-nodejs",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "node src/server.js",
"dev": "nodemon src/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elenamountz/music-api-nodejs.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/elenamountz/music-api-nodejs/issues"
},
"homepage": "https://github.com/elenamountz/music-api-nodejs#readme",
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^9.0.0",
"express": "^4.17.1",
"express-validator": "^6.10.1",
"multer": "^1.4.2",
"pg": "^8.6.0",
"pg-hstore": "^2.3.3",
"sequelize": "^6.6.2"
},
"devDependencies": {
"eslint": "^7.25.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.2",
"nodemon": "^2.0.7",
"prettier": "^2.2.1"
}
}