-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.06 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.06 KB
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
{
"name": "bolt-starter-ts",
"version": "1.0.0",
"description": "Bolt app sample in TypeScript",
"main": "lib/index.js",
"scripts": {
"start": "npm run build && node lib/index.js",
"local": "npm run build:live",
"build": "tsc -p .",
"build:live": "nodemon --watch 'src/**/*.ts' --exec \"ts-node\" src/index.ts",
"lint": "eslint ./src",
"lint:fix": "eslint --fix ./src",
"test": "jest"
},
"author": "Kazuhiro Sera (@seratch)",
"license": "MIT",
"dependencies": {
"@slack/bolt": "^3.3.0",
"@types/node": "^14.14.20",
"dotenv": "^8.2.0",
"mongoose": "^5.12.8",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"axios": "^0.21.1",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.0.4",
"mockingoose": "^2.15.2",
"prettier": "^2.3.0",
"ts-jest": "^27.0.2"
}
}