This repository was archived by the owner on Mar 24, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.4 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.4 KB
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
{
"name": "qlcwallet-server",
"version": "0.1.0",
"description": "QLCChain Wallet server",
"main": "index.js",
"scripts": {
"dev": "nodemon index.js --exec babel-node --presets es2015,stage-2",
"build": "babel . -d dist",
"start": "babel-node index.js --presets es2015",
"serve": "node dist/index.js",
"test": "mocha --compilers js:babel-register"
},
"author": "QLCChain Authors",
"license": "MIT",
"dependencies": {
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"dotenv": "^6.0.0",
"express": "^4.16.2",
"knex": "^0.15.1",
"morgan": "^1.9.0",
"pg": "^7.4.1",
"promise": "^8.0.1",
"redis": "^2.8.0",
"request": "^2.83.0",
"request-promise-native": "^1.0.5",
"winston": "^3.0.0",
"ws": "^6.0.0"
},
"eslintConfig": {
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 8,
"sourceType": "module"
},
"env": {
"node": true
},
"rules": {
"no-console": 0,
"no-unused-vars": 1
}
},
"repository": {
"type": "git",
"url": "https://github.com/qlcchain/qlcwallet-server.git"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^5.2.0",
"mocha": "^5.2.0",
"nodemon": "^1.11.0"
},
"babel": {
"presets": [
"es2015"
],
"sourceMaps": true
}
}