-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1006 Bytes
/
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
{
"name": "scoresearch",
"version": "1.0.0",
"description": "an app for recognizing audio and returning classical sheet music",
"main": "server.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha",
"start": "node server.js"
},
"keywords": [
"music",
"classical-music",
"audio-recognition",
"sheet-music",
"audD",
"IMSLP"
],
"author": "Blake_Krammes",
"license": "ISC",
"dependencies": {
"audio-recorder-polyfill": "^0.1.3",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"jsonwebtoken": "^8.3.0",
"lodash": "^4.17.11",
"mongoose": "^5.2.6",
"morgan": "^1.9.0",
"mpath": "^0.5.1",
"nodemailer": "^4.6.8",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"faker": "^4.1.0",
"mocha": "^5.2.0"
}
}