-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
47 lines (47 loc) · 1.33 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
{
"name": "definition-app",
"version": "1.0.0",
"description": "An app for storing and accessing company specific phrases",
"main": "build/app.js",
"scripts": {
"test": "nyc mocha -r ts-node/register src/**/*.spec.ts",
"lint": "eslint src/**/*.ts",
"start": "node build/app.js",
"build": "tsc",
"postinstall": "npm run build",
"initdatabase": "node build/database/run-db-scripts.js",
"launch": "tsc; node build/app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/slackapi/definition-app.git"
},
"author": "Colm Doyle",
"license": "MIT",
"bugs": {
"url": "https://github.com/slackapi/definition-app/issues"
},
"homepage": "https://github.com/slackapi/definition-app#readme",
"dependencies": {
"@slack/bolt": "^1.8.0",
"@types/request": "^2.48.4",
"dotenv": "^8.2.0",
"mysql2": "^2.1.0",
"request": "^2.88.2",
"typescript": "^3.8.3"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^5.2.7",
"@types/mysql2": "github:types/mysql2",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"mocha": "^7.1.1",
"nyc": "^14.1.1",
"prettier": "^1.19.1",
"ts-node": "^8.9.0"
}
}