-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 2.07 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
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@beakyn/slack-open-map",
"version": "0.1.0",
"description": "A Slack app to open files with location data on an external map.",
"repository": {
"type": "git",
"url": "https://github.com/Beakyn/slack-map"
},
"scripts": {
"dev": "dotenv -e .env npm run start:offline",
"start:offline": "sls offline start",
"deploy:stg": "dotenv -e .env sls deploy --stage stg",
"deploy:prod": "dotenv -e .env sls deploy --stage prod",
"env": "sync-dotenv",
"lint": "eslint ./src --ext .js,.ts",
"lint-fix": "eslint ./src --ext .js,.ts --fix",
"test": "jest"
},
"license": "UNLICENSED",
"author": {
"name": "Beakyn",
"email": "[email protected]"
},
"dependencies": {
"@mapbox/geojson-normalize": "^0.0.1",
"assert": "^2.0.0",
"aws-sdk": "2.665.0",
"axios": "0.21.1",
"d3-array": "^2.4.0",
"d3-dsv": "^1.2.0",
"lodash-pickdeep": "1.0.2",
"querystring": "0.2.0",
"shortid": "2.2.15",
"type-analyzer": "^0.2.5"
},
"devDependencies": {
"@types/axios": "0.14.0",
"@types/elasticsearch": "5.0.36",
"@types/jest": "25.2.1",
"@typescript-eslint/eslint-plugin": "2.30.0",
"@typescript-eslint/eslint-plugin-tslint": "2.30.0",
"@typescript-eslint/parser": "2.30.0",
"dotenv-cli": "3.1.0",
"eslint": "6.8.0",
"eslint-import-resolver-typescript": "2.0.0",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-no-null": "1.0.2",
"eslint-plugin-prefer-arrow": "1.2.0",
"husky": "4.2.5",
"jest": "25.5.0",
"lint-staged": "10.2.0",
"prettier": "2.0.5",
"serverless-content-encoding": "1.1.0",
"serverless-iam-roles-per-function": "2.0.2",
"serverless-offline": "6.1.4",
"serverless-plugin-optimize": "4.1.4-rc.1",
"serverless-plugin-typescript": "1.1.9",
"serverless-prune-plugin": "1.4.2",
"sync-dotenv": "2.6.1",
"ts-jest": "25.4.0",
"tslint": "6.1.2",
"tslint-config-prettier": "1.18.0",
"tslint-eslint-rules": "5.4.0",
"tslint-plugin-prettier": "2.3.0",
"typescript": "3.8.3",
"yarn-lock-sync": "0.3.3"
}
}