forked from kroniak/yandex-wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.15 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
73
{
"name": "yandex-wallet",
"version": "0.1.0",
"private": true,
"dependencies": {
"antd": "^2.13.6",
"axios": "^0.16.2",
"bcrypt-nodejs": "0.0.3",
"card-info": "git+https://github.com/iniel/card-info.git",
"jwt-simple": "^0.5.1",
"koa": "^2.3.0",
"koa-body": "^2.5.0",
"koa-compress": "^2.0.0",
"koa-passport": "^4.0.1",
"koa-router": "^7.2.1",
"koa-static": "^4.0.1",
"koa2-cors": "^2.0.3",
"log4js": "^2.3.5",
"moment": "^2.19.1",
"mongoose": "^4.12.3",
"mongoose-unique-validator": "^1.0.6",
"passport-google-auth": "^1.0.2",
"passport-jwt": "^3.0.0",
"passport-local": "^1.0.0",
"passport-yandex": "0.0.3",
"prop-types": "^15.6.0",
"qrcode.react": "^0.7.2",
"react": "^15.6.2",
"react-dom": "^15.6.2",
"react-emotion": "^7.3.2",
"react-redux": "^5.0.6",
"react-router": "^3.2.0",
"react-router-redux": "^4.0.8",
"react-tooltip": "^3.4.0",
"redux": "^3.7.2",
"redux-auth-wrapper": "^2.0.2",
"redux-thunk": "^2.2.0",
"reselect": "^3.0.1",
"ws": "^3.2.0",
"telegraf": "^3.15.3"
},
"scripts": {
"start": "cross-env NODE_ENV=dev react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test --env=jsdom",
"start:server": "cross-env NODE_ENV=dev node ./server/index.js",
"test:server": "cross-env NODE_PORT=4080 NODE_ENV=test mocha ./server/test --recursive --timeout 10000",
"cover:server": "cross-env NODE_PORT=4080 NODE_ENV=test nyc mocha ./server/test --recursive --timeout 10000"
},
"devDependencies": {
"axios-mock-adapter": "^1.9.0",
"babel-plugin-emotion": "^7.3.2",
"babel-preset-react-app": "^3.0.3",
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"cross-env": "^5.0.5",
"enzyme": "^3.1.0",
"enzyme-adapter-react-15": "^1.0.1",
"mocha": "^3.5.3",
"nyc": "^11.2.1",
"react-app-rewire-emotion": "^2.0.0",
"react-app-rewired": "^1.3.2",
"react-scripts": "^1.0.14",
"react-test-renderer": "^15.6.2",
"redux-mock-store": "^1.3.0"
},
"proxy": {
"/api": {
"target": "http://localhost:4000",
"ssl": false
}
}
}