-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.75 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
59
{
"name": "nodejs-basic-tasks-ru",
"version": "1.0.0",
"description": "Node.JS Course Materials",
"scripts": {
"test": "cross-env NODE_ENV=test mocha --no-warnings --reporter=reporter.js --ignore=node_modules/** **/*.test.js",
"test:local": "cross-env NODE_ENV=test node --no-warnings local.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": "^4.3.0",
"mocha": "^7.1.2",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"axios": "^0.19.0",
"cross-env": "^7.0.2",
"fs-extra": "^9.0.0",
"juice": "^6.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": "^8.0.8",
"koa-static": "^5.0.0",
"lodash": "^4.17.11",
"mongoose": "^5.5.2",
"mongoose-beautiful-unique-validation": "^7.1.1",
"nodemailer": "^6.1.1",
"nodemailer-html-to-text": "^3.0.0",
"nodemailer-smtp-transport": "^2.7.4",
"nodemailer-stub-transport": "^1.1.0",
"passport-facebook": "^3.0.0",
"passport-github": "^1.1.0",
"passport-local": "^1.0.0",
"passport-vkontakte": "^0.3.2",
"pug": "^2.0.3",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-router-dom": "^5.1.2",
"sinon": "^9.0.2",
"socket.io": "^2.2.0",
"socket.io-client": "^2.2.0",
"uuid": "^8.0.0"
}
}