-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.37 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.37 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
{
"name": "node-resque-jobs",
"version": "1.0.0",
"description": "Jobs with node-resque",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node src/index",
"format": "prettier --write 'src/**/*.js'",
"lint": "eslint --ext .js ./src",
"lint-fix": "eslint --fix --ext .js ./src",
"fix": "npm run format && npm run lint-fix",
"install:ci": "npm ci"
},
"keywords": [],
"author": "Dimitar Shishkov",
"license": "ISC",
"dependencies": {
"@alpacahq/alpaca-trade-api": "^1.4.2",
"@feathersjs/configuration": "^4.5.11",
"@feathersjs/errors": "^4.5.11",
"@feathersjs/express": "^4.5.11",
"@feathersjs/feathers": "^4.5.11",
"bluebird": "^3.7.2",
"compression": "^1.7.4",
"config": "^3.3.3",
"esm": "^3.2.25",
"feathers-hooks-common": "^5.0.4",
"feathers-mongodb": "^6.3.0",
"futil": "^1.67.2",
"helmet": "^4.3.1",
"lodash": "^4.17.20",
"mongodb": "^3.6.3",
"node-cron": "^2.0.3",
"node-fetch": "^2.6.1",
"node-resque": "^8.2.0",
"snoowrap": "^1.22.0"
},
"devDependencies": {
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"prettier": "2.1.2"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5",
"arrowParens": "avoid"
}
}