forked from js-tasks-ru/nodejs-20220114_yevheniibieliaiev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.7 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
53
54
55
56
57
58
{
"name": "nodejs-basic-tasks-ru",
"version": "1.0.0",
"description": "Node.JS Course Materials",
"scripts": {
"test": "cross-env NODE_ENV=test mocha --no-warnings --ignore=node_modules/** **/*.test.js",
"lint": "eslint --ignore-pattern 'public' --ignore-pattern '*.test.js' --ignore-pattern 'client' ."
},
"keywords": [],
"author": "Sergey Zelenov",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"babel-loader": "^8.0.6",
"chai": "^4.2.0",
"colors": "^1.3.3",
"eslint": "^7.0.0",
"eslint-config-google": "^0.14.0",
"glob": "^7.1.3",
"html-webpack-plugin": "^5.1.0",
"mocha": "^9.1.1",
"webpack": "^5.21.2",
"webpack-cli": "^4.5.0"
},
"dependencies": {
"axios": "^0.21.0",
"cross-env": "^7.0.2",
"fs-extra": "^10.0.0",
"juice": "^8.0.0",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"koa-favicon": "^2.0.1",
"koa-logger": "^3.2.0",
"koa-passport": "^4.1.3",
"koa-router": "^10.0.0",
"koa-static": "^5.0.0",
"lodash": "^4.17.11",
"mongoose": "^6.0.12",
"mongoose-beautiful-unique-validation": "github:tadjik1/mongoose-beautiful-unique-validation",
"nodemailer": "^6.1.1",
"nodemailer-html-to-text": "^3.0.0",
"nodemailer-smtp-transport": "^2.4.2",
"nodemailer-stub-transport": "^1.1.0",
"passport-facebook": "^3.0.0",
"passport-github": "^1.1.0",
"passport-local": "^1.0.0",
"passport-vkontakte": "^0.5.0",
"pug": "^3.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.1.2",
"sinon": "^11.1.2",
"socket.io": "^4.2.0",
"socket.io-client": "^4.2.0",
"uuid": "^8.0.0"
}
}