-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathpackage.json
126 lines (126 loc) · 3.69 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "faucet",
"version": "0.0.1",
"engines": {
"node": ">=8.1.4"
},
"bin": "./bin/www",
"main": "./bin/www",
"scripts": {
"start": "./bin/www",
"start-dev": "nodemon --ignore src ./bin/www | bunyan -o short",
"jest": "env $(tr \"\\\\n\" \" \" < .env.example) jest",
"lint": "eslint \"src/**/*.js\" \"routes/**/*.js\" \"helpers/**/*.js\"",
"lint-fix": "eslint --fix \"src/**/*.js\" \"routes/**/*.js\" \"helpers/**/*.js\"",
"test": "yarn run lint && yarn run jest",
"build": "webpack -p --config webpack/webpack.prod.config.js",
"build-dev": "webpack --progress -p --config webpack/webpack.config.js",
"precommit": "lint-staged"
},
"dependencies": {
"@sendgrid/mail": "6.2.1",
"@steemfans/auth-data": "^1.0.2",
"@steemit/steem-js": "0.7.1",
"axios": "^0.20.0",
"body-parser": "1.18.2",
"bunyan": "1.8.12",
"express": "4.16.2",
"google-auth-library": "^1.3.2",
"google-libphonenumber": "3.0.10",
"hbs": "4.0.1",
"immutable": "3.8.2",
"isomorphic-fetch": "2.2.1",
"js-cookie": "^2.2.1",
"jsonwebtoken": "8.1.1",
"jspdf": "^2.1.0",
"maxmind": "2.4.0",
"moment": "2.20.1",
"mysql2": "1.6.5",
"needle": "^2.4.0",
"qrious": "^4.0.2",
"react-copy-to-clipboard": "^5.0.2",
"redux-saga": "0.16.0",
"sequelize": "5.2.4",
"serve-favicon": "2.4.5",
"tronweb": "^3.0.0",
"twilio": "^3.64.0",
"validator": "9.2.0"
},
"devDependencies": {
"antd": "2.13.11",
"autoprefixer-loader": "3.2.0",
"babel-core": "6.26.0",
"babel-eslint": "8.0.1",
"babel-jest": "22.4.3",
"babel-loader": "6.2.5",
"babel-plugin-import": "1.2.0",
"babel-plugin-lodash": "3.2.11",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-runtime": "6.15.0",
"babel-polyfill": "6.16.0",
"babel-preset-env": "1.6.0",
"babel-preset-react": "6.5.0",
"babel-preset-react-hmre": "1.1.1",
"babel-preset-stage-2": "6.24.1",
"babel-register": "6.14.0",
"babel-runtime": "6.18.0",
"bluebird": "3.5.0",
"chai": "3.5.0",
"chai-enzyme": "0.5.1",
"cheerio": "0.20.0",
"css-loader": "0.24.0",
"enzyme": "2.4.1",
"es6-shim": "0.35.3",
"eslint": "4.3.0",
"eslint-config-airbnb": "15.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-jsx-a11y": "5.1.1",
"eslint-plugin-react": "7.5.1",
"extract-text-webpack-plugin": "3.0.2",
"file-loader": "0.11.2",
"history": "3.2.1",
"husky": "0.14.3",
"intl": "1.2.5",
"jest": "22.4.3",
"jsdom": "9.5.0",
"json-loader": "0.5.4",
"less": "2.7.2",
"less-loader": "4.0.4",
"lint-staged": "6.0.1",
"lodash-webpack-plugin": "0.10.6",
"nodemon": "1.12.1",
"postcss-loader": "2.0.6",
"prettier": "1.10.2",
"react": "15.3.2",
"react-addons-test-utils": "15.3.2",
"react-async-script": "0.9.1",
"react-dom": "15.3.2",
"react-google-recaptcha": "https://github.com/steemit/react-google-recaptcha.git#2b8d5d7",
"react-hot-loader": "4.0.1",
"react-intl": "2.4.0",
"react-phone-input-2": "^2.13.5",
"react-redux": "4.4.5",
"react-router": "3.0.0",
"redux": "3.5.2",
"redux-actions": "0.12.0",
"redux-thunk": "2.1.0",
"regenerator-runtime": "^0.11.1",
"sequelize-cli": "3.2.0",
"style-loader": "0.13.1",
"webpack": "3.11.0",
"webpack-dev-server": "1.15.1",
"webpack-hot-middleware": "2.10.0",
"webpack-visualizer-plugin": "0.1.5"
},
"lint-staged": {
"{src,routes,helpers}/**/*.js*": [
"prettier --write",
"git add"
]
},
"jest": {
"verbose": true,
"testURL": "http://localhost/"
}
}