-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.45 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
48
49
50
51
{
"name": "skeleton-typescript-express-api",
"version": "0.1.0",
"description": "A skeleton for an express based api written in typescript",
"main": "app.js",
"scripts": {
"build": "npm run test && tsc",
"test": "mocha --reporter spec --exit --compilers ts:ts-node/register \"test/**/*.test.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/somerobmitchell/skeleton-typescript-express-api.git"
},
"keywords": [
"vualto",
"typescript",
"express",
"api",
"skeleton"
],
"author": "Robert Mitchell <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/somerobmitchell/skeleton-typescript-express-api/issues"
},
"homepage": "https://github.com/somerobmitchell/skeleton-typescript-express-api#readme",
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/chai": "^4.1.3",
"@types/chai-http": "^3.0.4",
"@types/continuation-local-storage": "^3.2.1",
"@types/express": "^4.11.1",
"@types/mocha": "^5.2.0",
"@types/node": "^10.1.1",
"@types/winston": "^2.3.9",
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"mocha": "^5.2.0",
"ts-node": "^6.0.3",
"typescript": "^2.8.3"
},
"dependencies": {
"body-parser": "^1.18.3",
"continuation-local-storage": "^3.2.1",
"express": "^4.16.3",
"express-logging": "^1.1.1",
"uuid": "^3.2.1",
"winston": "^2.4.2",
"winston-loggly-bulk": "^2.0.2"
}
}