forked from starshiptoken/markets-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.26 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
{
"name": "crypto-markets-api",
"version": "1.0.0",
"description": "Crypto Markets API",
"author": "",
"main": "src/app.js",
"private": false,
"license": "MIT",
"engines": {
"node": ">=8",
"yarn": "*"
},
"scripts": {
"start": "nodemon ./src/app.js --watch ./src",
"lint": "eslint ./src/ --ignore-path .gitignore",
"lint:fix": "yarn lint --fix",
"test": "mocha './src/**/*.spec.js'",
"integration": "mocha 'src/**/*.integration.js' --file .mocha-integration-setup.js",
"test:watch": "nodemon --watch ./src --exec 'mocha src/**/*.spec.js'",
"coverage": "nyc --reporter=html --reporter=text npm run test",
"docs": "apidoc -i src -o docs"
},
"keywords": [
"express",
"node"
],
"dependencies": {
"@adminjs/express": "^4.0.1",
"@adminjs/sequelize": "^2.1.0",
"@google-cloud/bigquery": "^5.10.0",
"adminjs": "^5.3.3",
"apidoc": "^0.50.3",
"axios": "^0.24.0",
"cheerio": "^1.0.0-rc.10",
"commander": "^8.3.0",
"compression": "^1.7.4",
"connect-session-sequelize": "^7.1.2",
"cors": "^2.8.5",
"country-list": "^2.2.0",
"cron": "^1.8.2",
"cross-env": "^7.0.3",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"express-crud-router": "^6.3.1",
"express-formidable": "^1.2.0",
"express-session": "^1.17.2",
"express-validation": "^3.0.8",
"helmet": "^5.0.0",
"http-status": "^1.5.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"luxon": "^2.3.0",
"method-override": "^3.0.0",
"morgan": "^1.10.0",
"pg": "^8.7.1",
"pm2": "^5.1.2",
"sequelize": "^6.12.4",
"turndown": "^7.1.1",
"web3": "^1.6.1",
"winston": "^3.3.3"
},
"devDependencies": {
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.1.1",
"eslint": "^8.6.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"husky": "^7.0.4",
"mocha": "^9.1.3",
"nock": "^13.2.1",
"nodemon": "^2.0.15",
"nyc": "^15.1.0",
"shipit-cli": "^5.3.0",
"shipit-deploy": "^5.3.0",
"shipit-shared": "^4.4.2",
"sinon": "^12.0.1",
"sinon-chai": "^3.7.0",
"supertest": "^6.1.6"
},
"apidoc": {
"title": "Markets API Docs",
"url": "https://api-dev.blocksdecoded.com"
}
}