-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.91 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
{
"name": "thanksbot",
"version": "1.0.0",
"description": "A bot to foster and celebrate a culture of appreciation",
"main": "index.js",
"engines": {
"node": ">=12.0"
},
"scripts": {
"db-create-dev": "db-migrate --env init db:create thanksbot || echo \"Error setting up database\"",
"db-create-role-dev": "psql -d \"thanksbot\" -c \"CREATE ROLE ty WITH LOGIN PASSWORD 'thankyou'\" || echo \"Error creating role\"",
"db-init-local": "npm-run-all db-create-dev db-create-role-dev migrate-up",
"dev": "nodemon index.js",
"lint": "eslint --ext .json --ext .js .",
"list-message": "node ./scripts/listMessages.js",
"migrate-create": "db-migrate create",
"migrate-up": "db-migrate up",
"migrate-down": "db-migrate down",
"prettier": "prettier --write \"**/*.{js,json}\"",
"start": "npm-run-all migrate-up && node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/workingdirectory/thanksbot.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/workingdirectory/thanksbot/issues"
},
"homepage": "https://github.com/workingdirectory/thanksbot#readme",
"dependencies": {
"@slack/events-api": "^2.3.2",
"@slack/interactive-messages": "^1.5.0",
"@slack/web-api": "^5.8.0",
"dayjs": "^1.8.22",
"db-migrate": "^0.11.9",
"db-migrate-pg": "^1.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"minimist": ">=0.2.1",
"node-fetch": "^2.6.0",
"npm-run-all": "^4.1.5",
"pg": "^7.18.2"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-json": "^2.1.0",
"eslint-plugin-prettier": "^3.1.2",
"nodemon": "^2.0.2",
"prettier": "^1.19.1"
}
}