-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.06 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
{
"name": "ecommerce-product-recommendations",
"version": "1.0.1",
"description": "Analyze order history of customers and recommend products for new customers which enables higher sales volume.",
"main": "index.js",
"private": false,
"license": "MIT",
"scripts": {
"precommit": "yarn lint",
"start": "cross-env NODE_ENV=production pm2 start ./index.js",
"dev": "nodemon ./index.js",
"lint": "eslint ./ --ignore-path .gitignore --ignore-pattern internals/scripts",
"lint:fix": "yarn lint --fix",
"lint:watch": "yarn lint --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "palPalani <palani.p@gmail.com>",
"license": "ISC",
"dependencies": {
"body-parser": "^1.20.3",
"cron": "^3.2.1",
"express": "^4.21.1",
"mongoose": "^8.8.3",
"nn": "0.0.7",
"pm2": "^5.4.3",
"stats-analysis": "^2.0.0",
"util": "^0.12.5"
},
"devDependencies": {
"eslint": "^9.16.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.31.0",
"nodemon": "^3.1.7"
}
}