forked from vesper-framework/typescript-advanced-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 803 Bytes
/
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
{
"name": "typescript-advanced-example",
"version": "0.1.0",
"description": "How to use Vesper Framework with TypeScript - advanced example",
"license": "MIT",
"readmeFilename": "README.md",
"author": {
"name": "Umed Khudoiberdiev",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/vesper-framework/typescript-advanced-example.git"
},
"bugs": {
"url": "https://github.com/vesper-framework/typescript-advanced-example/issues"
},
"tags": [
"vesper",
"vesper-typescript-example"
],
"dependencies": {
"vesper": "^0.1.0",
"sqlite3": "^4.0.0"
},
"scripts": {
"compile": "tsc",
"start": "npm run compile && node ./src/index.js"
},
"devDependencies": {
"typescript": "^2.7.2"
}
}