-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
69 lines (69 loc) · 1.84 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
{
"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",
"lint": "eslint ./src/ --ignore-path .gitignore --ignore-pattern internals/scripts",
"lint:fix": "yarn lint --fix",
"lint:watch": "yarn lint --watch",
"test": "cross-env PORT=9001 mocha --timeout 20000 --exit --recursive src/api/**/*.spec.js",
"test:watch": "cross-env PORT=9001 mocha --watch src/api/**/*.spec.js",
"coverage": "nyc --reporter=html --reporter=text npm run test",
"docs": "apidoc -i src/api -o docs"
},
"keywords": [
"express",
"node"
],
"dependencies": {
"@adminjs/express": "^4.0.0",
"@adminjs/sequelize": "^2.0.0",
"adminjs": "^5.1.0",
"axios": "^0.21.1",
"compression": "^1.6.2",
"cors": "^2.8.3",
"cross-env": "^7.0.3",
"dotenv": "^10.0.0",
"express": "^4.15.2",
"express-formidable": "^1.2.0",
"express-session": "^1.17.2",
"express-validator": "^6.12.1",
"helmet": "^4.6.0",
"http-status": "^1.0.1",
"joi": "^17.4.2",
"lodash": "^4.17.4",
"method-override": "^3.0.0",
"moment-timezone": "^0.5.13",
"morgan": "^1.8.1",
"pg": "^8.7.1",
"pm2": "^5.1.0",
"sequelize": "^6.6.5",
"winston": "^3.1.0"
},
"devDependencies": {
"apidoc": "^0.29.0",
"chai": "^4.1.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.0",
"eslint": "^7.29.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.2.0",
"husky": "^7.0.1",
"mocha": "^9.0.3",
"nodemon": "^2.0.1",
"nyc": "^15.1.0",
"opn-cli": "^5.0.0",
"sinon": "^11.1.2",
"sinon-chai": "^3.0.0",
"supertest": "^6.1.3"
}
}