-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 779 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 779 Bytes
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
{
"name": "basicpole",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm run build:live",
"build": "tsc -p .",
"build:live": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^24.0.9",
"@types/node": "^11.10.4",
"jest": "^24.1.0",
"nodemon": "^1.18.10",
"ts-jest": "^24.0.0",
"ts-node": "^8.0.2",
"typescript": "^3.3.3333"
},
"dependencies": {
"@slack/client": "^4.10.0",
"@types/express": "^4.16.1",
"@types/sqlite3": "^3.1.4",
"express": "^4.16.4",
"sql-template-strings": "^2.2.2",
"sqlite": "^3.0.2",
"sqlite3": "^4.0.6"
}
}