-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
48 lines (48 loc) · 1.33 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
{
"name": "prox",
"version": "1.4.1",
"private": true,
"homepage": "https://github.com/ifvictr/prox#readme",
"bugs": {
"url": "https://github.com/ifvictr/prox/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/ifvictr/prox.git"
},
"license": "MIT",
"author": {
"name": "Victor Truong",
"email": "[email protected]",
"url": "https://victortruong.com"
},
"main": "./src/index.js",
"scripts": {
"build": "yarn clean && babel ./src --out-dir ./build --copy-files",
"clean": "rm -rf ./build && mkdir ./build",
"dev": "nodemon -r ./node_modules/dotenv/config --exec babel-node ./src/index.js",
"format": "prettier './src/**/*.js' --write",
"lint": "eslint './src/**/*.js'",
"start": "yarn build && node ./build/index.js"
},
"dependencies": {
"@slack/bolt": "^2.1.1",
"is-url": "^1.2.4",
"mongoose": "^5.9.20",
"mongoose-delete": "^0.5.2"
},
"devDependencies": {
"@babel/cli": "^7.10.3",
"@babel/core": "^7.10.3",
"@babel/eslint-parser": "^7.11.0",
"@babel/eslint-plugin": "^7.11.0",
"@babel/node": "^7.10.3",
"@babel/preset-env": "^7.10.3",
"dotenv": "^8.2.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"nodemon": "^2.0.4",
"prettier": "^2.0.5"
}
}