forked from microapidev/stockTicker-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.92 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
{
"name": "stockTicker-api",
"version": "1.0.0",
"description": "A microservice to monitor the stock market, and reflect current market prices.",
"main": "index.js",
"scripts": {
"start": "cross-env DEBUG=log NODE_ENV=production node ./src/bin/www.js",
"dev": "cross-env NODE_ENV=dev DEBUG=log nodemon --exec babel-node ./src/bin/www.js",
"test": "cross-env DEBUG=log NODE_ENV=test jest --verbose",
"test:debug": "cross-env NODE_ENV=test jest --runInBand --detectOpenHandles --verbose",
"test:watch": "cross-env NODE_ENV=test jest --watch --verbose",
"test:cover": "cross-env NODE_ENV=test jest --coverage",
"test:ci": "cross-env NODE_ENV=test jest --coverage --verbose && cat ./coverage/lcov.info | coveralls",
"lint": "eslint \"./**/*.js\"",
"lint:fix": "eslint --fix \"./**/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/microapidev/stockTicker-api.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/microapidev/stockTicker-api/issues"
},
"homepage": "https://github.com/microapidev/stockTicker-api#readme",
"dependencies": {
"@hapi/joi": "^17.1.1",
"cookie-parser": "~1.4.4",
"cross-env": "^7.0.2",
"debug": "^2.6.9",
"dotenv": "^8.2.0",
"express": "~4.16.1",
"express-async-errors": "^3.1.1",
"express-jwt": "^6.0.0",
"express-rate-limit": "^5.1.3",
"mongoose": "^5.9.25",
"mongoose-delete": "^0.5.2",
"morgan": "~1.9.1",
"swagger-ui-express": "^4.1.4",
"ws": "^7.3.1"
},
"devDependencies": {
"@babel/cli": "^7.10.3",
"@babel/core": "^7.10.3",
"@babel/node": "^7.10.3",
"@babel/preset-env": "^7.10.3",
"coveralls": "^3.1.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.1.0",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"supertest": "^4.0.2"
}
}