-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
57 lines (57 loc) · 1.71 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
{
"name": "slack-volunteer-seeker",
"version": "1.0.0",
"description": "Slackbot to coordinate errand volunteering",
"main": "index.js",
"scripts": {
"test": "jest --coverage",
"test:slack": "jest test/slack/*",
"start": "nodemon src/index.js",
"lint": "eslint src/**/*.js test/**/*.js",
"lint:fix": "eslint src/**/*.js test/**/*.js --fix",
"backfill-requesters": "node scripts/oneoff/backfillRequesters.js",
"remove-extra-whitespace": "node scripts/oneoff/removeExtraWhitespace.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/astoria-tech/slack-volunteer-seeker.git"
},
"author": "Astoria Tech",
"license": "ISC",
"bugs": {
"url": "https://github.com/astoria-tech/slack-volunteer-seeker/issues"
},
"homepage": "https://github.com/astoria-tech/slack-volunteer-seeker#readme",
"dependencies": {
"airtable": "^0.10.0",
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"condense-whitespace": "^2.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"geolib": "^3.2.1",
"google-libphonenumber": "^3.2.8",
"moment": "^2.26.0",
"node-geocoder": "^3.25.1",
"preconditions": "^2.2.3",
"qs": "^6.9.3",
"random-js": "^2.1.0",
"slack": "^11.0.2",
"winston": "^3.2.1",
"winston-transport": "^4.3.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-jsdoc": "^24.0.0",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^25.2.7",
"jest-when": "^2.7.1",
"nodemon": "^2.0.2",
"prettier": "^2.0.2",
"rewire": "^5.0.0"
}
}