This repository has been archived by the owner on Nov 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.5 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
{
"name": "exyos",
"version": "2.5.0",
"description": "Express Yourself Slack Slash Command",
"main": "src/index.ts",
"repository": "git@github.com:cyclic-reference/ExYos.git",
"author": "Alex Simons <alexsimons9999@gmail.com>",
"license": "MIT",
"private": false,
"dependencies": {
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"express": "^4.17.0",
"figlet": "^1.2.3",
"serverless-http": "^2.0.2"
},
"scripts": {
"start": "DEV=true sls offline start",
"start:not:dev": "sls offline start",
"test": "jest --coverage",
"lint": "tslint src/**/*.ts"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-typescript": "^7.3.3",
"@types/jest": "^24.0.13",
"@types/node": "^12.0.2",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.8.0",
"copy-webpack-plugin": "^5.0.3",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.8.0",
"lodash": "^4.17.15",
"serverless-domain-manager": "^3.2.6",
"serverless-offline": "^4.10.3",
"serverless-webpack": "^5.3.0",
"ts-jest": "^24.0.2",
"ts-loader": "^6.0.1",
"tslint": "^5.16.0",
"typescript": "^3.4.5",
"webpack": "^4.32.2"
},
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest",
"^.+\\.tsx?$": "ts-jest"
}
}
}