-
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.15 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.15 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": "ApiTest",
"version": "1.0.0",
"description": "Api Test",
"main": "index.js",
"scripts": {
"start": "node dist/index.js",
"build": "gulp scripts",
"test": "NODE_ENV=test mocha --reporter spec --require ts-node/register 'test/**/*.test.ts'"
},
"keywords": [],
"author": "Antonio Lopez <antoniojlopez@gmail.com>",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/chai-http": "^3.0.4",
"@types/debug": "0.0.30",
"@types/mocha": "^2.2.32",
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"mocha": "^5.0.1"
},
"dependencies": {
"@types/body-parser": "^1.16.8",
"@types/express": "^4.0.39",
"@types/lowdb": "^1.0.0",
"@types/morgan": "^1.7.35",
"@types/node": "^9.4.6",
"@types/uuid": "^3.4.3",
"@types/winston": "^2.3.8",
"@types/lodash": "^4.14.104",
"body-parser": "^1.18.2",
"gulp": "^3.9.1",
"gulp-typescript": "^4.0.1",
"debug": "^3.1.0",
"express": "^4.16.2",
"lodash": "^4.17.5",
"morgan": "^1.9.0",
"lowdb": "^1.0.0",
"ts-node": "^3.3.0",
"typescript": "^2.7.2",
"uuid": "^3.2.1",
"winston": "^2.4.0"
}
}