-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.48 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
{
"name": "conductor",
"version": "1.0.0-beta.0",
"repository": "[email protected]:roger-king/conductorjs.git",
"license": "MIT",
"author": "Roger King <[email protected]>",
"main": "dist",
"module": "dist-esm",
"types": "dist/index.d.ts",
"files": [
"src",
"dist",
"dist-esm",
"LICENSE.md",
"README.md",
"yarn.lock"
],
"scripts": {
"build": "yarn -s clean && tsc -p tsconfig.cjs.json && tsc -p tsconfig.esm.json",
"clean": "rm -rf dist*",
"dev": "tsc -p tsconfig.cjs.json -w"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,json,md}": [
"prettier --write",
"git add"
],
"*package.json": [
"sort-package-json",
"git add"
]
},
"dependencies": {
"@slack/bolt": "^2.2.3",
"express": "^4.17.1",
"tedis": "^0.1.12",
"tslib": "^2.0.1"
},
"devDependencies": {
"@types/express": "^4.17.7",
"husky": "^4.2.5",
"jest": "^26.4.0",
"jest-watch-typeahead": "^0.6.1",
"lint-staged": "^10.2.11",
"nodemon": "^2.0.4",
"prettier": "^2.1.1",
"redis-mock": "^0.51.0",
"sort-package-json": "^1.44.0",
"ts-jest": "^26.2.0",
"ts-node": "^8.10.2",
"ts-node-dev": "^1.0.0-pre.57",
"typescript": "^3.9.7"
}
}