-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.38 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
43
44
45
46
47
48
49
50
51
52
{
"name": "m-store",
"version": "1.0.0",
"description": "An ecommerce webisite with multivendor",
"main": "index.js",
"scripts": {
"app": "nodemon index.js",
"serve:debug": "nodemon --inspect index.js",
"test": "mocha tests/*.js --exit",
"test:chrome": "node test_browser/index.js",
"lint": "eslint ./*.js",
"lint:fix": "eslint --fix ./*.js",
"asset:watch": "npx webpack --config-name=watch",
"asset:build": "npx webpack --config-name=prod",
"seed": "node seeds"
},
"keywords": [
"ecommerce"
],
"author": "Kayode Adeniyi",
"license": "ISC",
"dependencies": {
"@hapi/joi": "^17.1.1",
"bcrypt": "^5.0.0",
"connect-mongo": "^3.2.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"joi": "^17.2.1",
"mongoose": "^5.10.2",
"morgan": "^1.10.0",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"pug": "^3.0.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"eslint": "^7.7.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"lodash.debounce": "^4.0.8",
"mocha": "^8.1.2",
"nodemon": "^2.0.4",
"puppeteer-core": "^5.2.1",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
}
}