-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·72 lines (72 loc) · 2.08 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
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "node-school-wallet-app",
"version": "1.0.0",
"description": "Приложение школы Node.js «Кошелёк»",
"author": "",
"scripts": {
"build": "webpack",
"tls:generate": "scripts/tls/generate.sh",
"start": "cross-env NODE_PATH=. node ./source/app.js",
"start:https": "cross-env NODE_HTTPS=1 npm start",
"watch": "cross-env NODE_PATH=. nodemon --watch source ./source/app.js",
"test": "cross-env NODE_PATH=. jest"
},
"repository": {
"type": "git",
"url": "ssh://[email protected]:rakchaev/node-school-app.git"
},
"license": "ISC",
"engines": {
"node": "^8.2"
},
"dependencies": {
"axios": "~0.16.2",
"config": "^1.27.0",
"koa": "^2.3.0",
"koa-bodyparser": "^4.2.0",
"koa-passport": "^4.0.1",
"koa-router": "^7.2.1",
"koa-session": "^5.5.0",
"koa-static": "^4.0.1",
"lodash": "^4.17.4",
"mongoose": "^4.12.4",
"nodemailer": "^4.3.1",
"nodemailer-smtp-transport": "^2.7.4",
"passport-yandex": "0.0.3",
"prop-types": "^15.5.10",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"serialize-javascript": "^1.4.0"
},
"devDependencies": {
"antd": "^2.12.8",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-emotion": "^7.1.0",
"babel-plugin-import": "^1.4.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"card-info": "git+https://github.com/iniel/card-info.git",
"cross-env": "^5.1.1",
"css-loader": "^0.28.7",
"emotion": "^7.2.0",
"emotion-server": "^7.3.2",
"eslint": "^4.7.0",
"eslint-config-airbnb": "^16.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jest": "^21.2.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.3.0",
"extract-text-webpack-plugin": "^3.0.1",
"ignore-loader": "^0.1.2",
"jest": "^21.2.1",
"log4js": "^2.3.4",
"moment": "^2.18.1",
"react-emotion": "^7.2.0",
"sinon": "^4.0.1",
"style-loader": "^0.18.2",
"url-loader": "^0.5.9",
"webpack": "^3.5.5"
}
}