forked from ddnlink/ddn
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.13 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 3.13 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
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
{
"name": "ddn",
"version": "3.0.0",
"main": "./app.js",
"repository": {
"type": "git",
"url": "git+https://github.com/ddnlink/ddn.git"
},
"bugs": {
"url": "https://github.com/ddnlink/ddn/issues"
},
"homepage": "https://github.com/ddnlink/ddn#readme",
"keywords": [
"ddn",
"blockchain",
"bitcoin",
"node.js",
"web",
"server",
"git",
"crypto",
"cryptography",
"encryption"
],
"author": "DDN <support@ddn.link>",
"contributors": [
{
"name": "imfly",
"email": "kubying@foxmail.com"
},
{
"name": "wangxm",
"email": "softwaiter@126.com"
}
],
"license": "MIT",
"engines": {
"node": ">=8.6.0"
},
"scripts": {
"start": "node --harmony app.js",
"test": "./node_modules/.bin/mocha -r intelli-espower-loader test/**/*.test.js",
"build": "cross-env NODE_ENV=production ./node_modules/.bin/gulp linux-build-main",
"build-testnet": "./node_modules/.bin/gulp linux-build-test",
"build-testnet-mac": "./node_modules/.bin/gulp mac-build-test",
"build-localnet": "./node_modules/.bin/gulp linux-build-local"
},
"dependencies": {
"@ddn/bignum-utils": "^1.0.0",
"@ddn/ddn-aob": "^1.0.4",
"@ddn/ddn-asset-base": "^1.0.3",
"@ddn/ddn-dao": "^1.0.3",
"@ddn/ddn-dapp": "^1.0.3",
"@ddn/ddn-evidence": "^1.0.2",
"@ddn/ddn-node-sdk": "^3.0.1",
"@ddn/ddn-utils": "^1.0.2",
"ajv": "^6.3.0",
"array.prototype.find": "1.0.0",
"array.prototype.findindex": "2.0.0",
"async": "1.5.2",
"bitcore-mnemonic": "^8.6.0",
"body-parser": "^1.16.0",
"bytebuffer": "5.0.1",
"chai-to-assert": "^1.0.0",
"change-case": "3.0.0",
"colors": "1.1.2",
"commander": "2.6.0",
"compression": "^1.7.3",
"cors": "2.7.1",
"daemon": "1.1.0",
"ed25519": "0.0.4",
"ejs": "2.5.7",
"express": "^4.16.4",
"express-domain-middleware": "0.1.0",
"extend": "2.0.0",
"ip": "1.1.3",
"lodash": "^4.17.11",
"method-override": "^3.0.0",
"mysql2": "^1.6.1",
"node-fetch": "^1.7.3",
"node-gyp": "^3.6.2",
"pg": "^7.7.1",
"pg-hstore": "^2.3.2",
"protobufjs": "^6.8.6",
"randomstring": "1.1.5",
"request": "^2.88.0",
"rimraf": "2.5.4",
"sequelize": "^4.41.0",
"socket.io": "^2.2.0",
"sqlite3": "^4.0.2",
"strftime": "0.9.2",
"tracer": "^0.8.11",
"underscore": "^1.9.1",
"util-extend": "1.0.3",
"valid-url": "1.0.9"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"chai": "^3.0.0",
"cross-env": "^5.1.3",
"gulp": "^4.0.0",
"gulp-replace": "^0.5.4",
"gulp-shell": "^0.5.2",
"gulp-uglify": "^3.0.0",
"intelli-espower-loader": "^1.0.1",
"mocha": "^5.2.0",
"mocha-babel": "^3.0.3",
"moment": "^2.9.0",
"power-assert": "^1.5.0",
"pump": "^2.0.0",
"should": "~4.6.0",
"supertest": "^3.0.0",
"uglifyjs-webpack-plugin": "^1.2.2",
"webpack": "^3.11.0",
"webpack-node-externals": "^1.2.0"
}
}