-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 776 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 776 Bytes
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
{
"name": "songalike",
"version": "1.0.0",
"description": "A service to find similar songs",
"main": "server.js",
"engines": {
"node": "12.16.2"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "babel src -d ./",
"start": "node server.js"
},
"keywords": [
"sound",
"song",
"music"
],
"author": "Nicolas Garnier",
"license": "MIT",
"dependencies": {
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"body-parser": "^1.9.2",
"cookie-parser": "1.3.2",
"express": "^4.0.0",
"material-components-web": "^0.1.1",
"pug": "^2.0.0-beta6",
"querystring": "^0.2.0",
"request": "^2.34.0",
"request-promise": "^4.1.1"
},
"devDependencies": {}
}