-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
78 lines (78 loc) · 2.49 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
{
"name": "ParetoNetworkSERVER",
"version": "2.0.0",
"description": "The server for coordinating containers for the Pareto Network Sentinels.",
"scripts": {
"start": "node backend.js",
"test": "mocha test/*.js --timeout 150000 --exit",
"build-frontend": "npm run-script --prefix frontend build && rm -rf public && mv frontend/dist/ public && cp -R frontend/src/assets/download/ public/download",
"serve": "npm run-script --prefix frontend serve",
"docs": "git submodule update --force --init --recursive && rm -rf api-docs && cp -R docs/. api-docs/ && rm -rf api-docs/.git && rm api-docs/.gitignore"
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"assert": "1.4.1",
"aws-sdk": "^2.283.1",
"axios": "^0.19.0",
"bip39": "^2.5.0",
"body-parser": "1.18.2",
"browserify": "^16.1.1",
"compression": "^1.7.2",
"connect-history-api-fallback": "^1.5.0",
"connect-mongo": "^3.1.2",
"cookie-parser": "^1.4.3",
"cors": "^2.8.5",
"countup.js": "^2.0.4",
"debug": "^3.1.0",
"decimal.js-light": "^2.4.1",
"envify": "^4.1.0",
"eth-sig-util": "^2.1.0",
"ethereumjs-util": "^5.1.5",
"ethereumjs-wallet": "^0.6.3",
"express": "^4.15.2",
"express-boom-2": "0.4.0",
"express-session": "^1.15.6",
"express-static-gzip": "^0.3.2",
"express-validator": "^5.0.3",
"from-exponential": "^1.0.0",
"jquery": "^3.4.0",
"jquery-color": "^1.0.0",
"jsonwebtoken": "^8.2.0",
"kue": "^0.11.6",
"mongoose": "^5.7.7",
"mongoose-sequence": "^5.2.2",
"multer": "^1.3.0",
"multer-s3": "^2.7.0",
"node-cron": "^1.2.1",
"node-gyp": "^6.0.0",
"rate-limiter-flexible": "^0.21.2",
"redis": "^2.8.0",
"redoc": "^2.0.0-rc.18",
"request-promise": "4.2.2",
"ssl-express-www": "^3.0.3",
"stripe": "^6.28.0",
"throng": "4.0.0",
"@truffle/hdwallet-provider": "^1.0.23",
"uglify-es": "^3.3.9",
"uglify-js": "^3.3.9",
"unique-random-array": "1.0.0",
"uri-js": "3.0.2",
"vue-line-clamp": "^1.3.2",
"vue-meta": "^2.3.1",
"web3": "^1.2.2",
"web3-provider-engine": "^14.0.6",
"ws": "^7.2.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"babelify": "^8.0.0",
"chai": "^4.1.2",
"debug": "^3.1.0",
"mocha": "^5.1.1",
"supertest": "^3.0.0"
},
"heroku-run-build-script": false
}