This repository was archived by the owner on Oct 23, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.31 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.31 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
43
44
45
{
"name": "coffeeshop-search-example",
"version": "1.0.0",
"description": "Simple Coffeeshop Search API",
"main": "app.js",
"scripts": {
"build": "node_modules/gulp/bin/gulp.js",
"start": "node dist/index.js",
"test": "mocha --reporter spec --compilers ts:ts-node/register 'test/**/*.test.ts'"
},
"keywords": [],
"author": "Andrew Gilbert",
"repository": {
"type": "git",
"url": "https://github.com/andrewgilbert12/node-ts-api-example"
},
"license": "ISC",
"devDependencies": {
"@types/body-parser": "^1.16.8",
"@types/chai": "^4.0.10",
"@types/chai-http": "^3.0.3",
"@types/debug": "0.0.30",
"@types/express": "^4.11.0",
"@types/helmet": "0.0.37",
"@types/mocha": "^2.2.44",
"@types/morgan": "^1.7.35",
"@types/request": "^2.0.9",
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"gulp": "^3.9.1",
"gulp-typescript": "^3.2.3",
"mocha": "^4.0.1",
"ts-node": "^4.1.0",
"typescript": "^2.6.2"
},
"dependencies": {
"body-parser": "^1.18.2",
"csv": "^2.0.0",
"debug": "^3.1.0",
"express": "^4.16.2",
"helmet": "^3.9.0",
"morgan": "^1.9.0",
"request": "^2.83.0"
}
}