-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.16 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
{
"name": "oauth",
"version": "0.1.0",
"description": "x",
"private": false,
"engines": {
"node": "16.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/free-ignorance/OAuth.git"
},
"bugs": {
"url": "https://github.com/free-ignorance/OAuth/issues"
},
"contributors": [
"Beau Bouchard <https://github.com/BeauBouchard>"
],
"scripts": {
"start": "ts-node src/app.ts",
"build": "tsc",
"serve": "node dist/app.js",
"test": "jest",
"test:lint": "eslint . 'src/**/*.ts'",
"test:lint:fix": "eslint . --fix 'src/**/*.ts'"
},
"dependencies": {
"@slack/oauth": "^2.6.1",
"@slack/web-api": "^6.9.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"helmet": "^7.0.0",
"winston": "^3.11.0"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/helmet": "^4.0.0",
"@types/jest": "^29.5.5",
"@types/node": "^20.5.2",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"eslint": "^8.50.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^5.1.6"
}
}