-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.1 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.1 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
40
41
42
{
"name": "webapi-with-node-and-typescript",
"version": "1.0.0",
"description": "An example of a WebAPI using Node.js with Express and Typescript",
"main": "index.js",
"scripts": {
"dev": "npm run tsc & npm run nodemon",
"nodemon": "nodemon dist",
"tsc": "tsc -w",
"build": "tsc",
"start": "node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ts-script/WebAPI-with-Node-and-TypeScript.git"
},
"keywords": [
"WebApi",
"Nodejs",
"Express",
"TypeScript"
],
"author": "Tom Schalbar",
"license": "MIT",
"bugs": {
"url": "https://github.com/ts-script/WebAPI-with-Node-and-TypeScript/issues"
},
"homepage": "https://github.com/ts-script/WebAPI-with-Node-and-TypeScript#readme",
"devDependencies": {
"@types/express": "4.11.1",
"@types/node": "9.4.6",
"nodemon": "1.15.0",
"typescript": "2.7.2"
},
"dependencies": {
"express": "4.16.2",
"reflect-metadata": "0.1.12",
"routing-controllers": "0.7.6",
"typedi": "0.7.1"
}
}