-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.14 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.14 KB
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
{
"name": "any-shop",
"version": "1.0.0",
"description": "Node.js course project for learn.javascript.ru",
"scripts": {
"start": "nodemon --config nodemon.json index.js",
"test": "NODE_ENV=test mocha",
"build": "cd client/ && npm install && npm run build",
"lint": "eslint ."
},
"keywords": [],
"author": "Sergey Zelenov",
"license": "MIT",
"devDependencies": {},
"dependencies": {
"@koa/cors": "^3.0.0",
"axios": "^0.19.2",
"dotenv": "^8.2.0",
"juice": "^6.0.0",
"koa": "^2.11.0",
"koa-bodyparser": "^4.2.1",
"koa-passport": "^4.1.3",
"koa-router": "^8.0.8",
"koa-static": "^5.0.0",
"lodash": "^4.17.15",
"mongoose": "^5.9.3",
"mongoose-beautiful-unique-validation": "^7.1.1",
"nodemailer": "^6.4.4",
"nodemailer-html-to-text": "^3.1.0",
"nodemailer-smtp-transport": "^2.7.4",
"nodemailer-stub-transport": "^1.1.0",
"passport-github": "^1.1.0",
"passport-local": "^1.0.0",
"passport-vkontakte": "^0.3.2",
"passport-yandex": "0.0.4",
"pug": "^2.0.4",
"socket.io": "^2.3.0",
"uuid": "^7.0.2",
"winston": "^3.2.1"
},
"main": "index.js"
}