-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
34 lines (34 loc) · 958 Bytes
/
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
{
"name": "bitg-wallet-backend",
"version": "1.0.0",
"description": "This is the BitGreen webwallet backend.",
"main": "server.js",
"scripts": {
"start": "NODE_ENV=development nodemon server.js"
},
"dependencies": {
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.4",
"express": "^4.17.1",
"json-rpc2": "git+https://github.com/konez2k/node-jsonrpc2.git",
"lodash": "^4.17.15",
"morgan": "^1.9.0",
"winston": "^3.2.1"
},
"devDependencies": {
"babel-eslint": "6.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"chai": "^4.1.2",
"eslint": "^5.16.0",
"eslint-config-airbnb": "9.0.1",
"eslint-import-resolver-babel-module": "^3.0.0",
"eslint-plugin-import": "1.8.1",
"eslint-plugin-jsx-a11y": "1.3.0",
"eslint-plugin-react": "5.2.2",
"mocha": "^5.2.0",
"mocha-junit-reporter": "^1.23.3",
"nodemon": "^1.19.4"
}
}