-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 1.09 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
{
"name": "bumblebee",
"version": "1.0.0",
"description": "A Bull implementation for common async tasks",
"repository": "github:pollygot/workers-kue",
"main": "src/index.js",
"scripts": {
"compile": "rm -rf ./build && babel ./src --presets stage-3 --plugins transform-es2015-modules-commonjs --out-dir ./build/",
"dev": "nodemon ./src/",
"start": "node ./build/",
"pretty": "prettier --write \"./**/*.{js,json,yml,md}\""
},
"author": "@kiwicopple",
"license": "ISC",
"dependencies": {
"axios": "^0.18.0",
"bull": "^3.4.8",
"config": "^2.0.1",
"cors": "^2.8.4",
"expo-server-sdk": "^3.0.1",
"express": "^4.16.3",
"express-validator": "^5.3.0",
"mailgun-js": "^0.20.0",
"node-trello": "^1.3.0"
},
"devDependencies": {
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-preset-stage-3": "^6.24.1",
"eslint": "^5.3.0",
"husky": "^1.1.2",
"nodemon": "^1.18.4",
"prettier": "1.14.3",
"pretty-quick": "^1.8.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}