forked from jackmercy/ML-web-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1014 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
{
"name": "recommender-system-javascript-movielens",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "nodemon src/index.js --exec babel-node --presets es2015,stage-2",
"test": "echo \"No test specified\" && exit 0",
"debug": "babel-node --inspect --inspect-brk=9215 .compiled/index.js --presets es2015,stage-2",
"compile": "babel src --out-dir .compiled --source-maps --watch --presets es2015,stage-2"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"logger": "0.0.1",
"nodemon": "^1.17.4"
},
"dependencies": {
"app-root-path": "^2.0.1",
"body-parser": "^1.18.2",
"compress": "^0.99.0",
"compression": "^1.7.2",
"compute-cosine-similarity": "^1.0.0",
"express": "^4.16.3",
"fast-csv": "^2.4.1",
"mathjs": "^3.18.0",
"morgan": "^1.9.0",
"natural": "^0.5.6"
}
}