-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
81 lines (81 loc) · 2.59 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "ts-express-ddd-seed",
"description": "A seed sample project to experiment with DDD, Inverisfy.js, Typeorm and CQRS.",
"version": "0.0.1",
"author": "Juliano Sanches",
"license": "MIT",
"keywords": [
"DDD",
"Typescript",
"Nodejs",
"CQRS",
"Typeorm"
],
"repository": {
"type": "git"
},
"main": "dist/src/app.js",
"scripts": {
"start": "npm run clean && concurrently \"npm run build:watch\" \"wait-on -w 0 ./dist/src/app.js && nodemon dist/src/app.js\"",
"build": "npm run clean; tsc",
"build:watch": "npm run build -- -w",
"clean": "rimraf dist",
"debug": "npm run build && node --nolazy --inspect-brk=9229 dist/src/app.js",
"dist": "npm run build; cp package.json dist/",
"docs": "apidoc -i src -o apidoc",
"lint": "tslint src/**/*.ts test/**/*.ts",
"release": "npm run lint && npm run test:unit && npm run test:e2e && npm run dist",
"test:unit": "NODE_ENV=unit-test mocha --opts ./mocha.unit.opts",
"test:unit:watch": "NODE_ENV=unit-test npm run test:unit -- --watch",
"test:unit:coverage": "NODE_ENV=unit-test istanbul cover --dir coverage-unit -e .ts _mocha -- --opts mocha.unit.opts",
"test:e2e": "npm run build && NODE_ENV=test mocha --opts ./mocha.e2e.opts",
"test:e2e:watch": "npm run test:e2e -- --watch",
"test:e2e:coverage": "istanbul cover --dir coverage-e2e -e .ts -x *.e2e.spec.ts _mocha -- --opts mocha.e2e.opts",
"precommit": "npm run release",
"postinstall": "npm run docs"
},
"dependencies": {
"express": "4.16.2",
"express-session": "1.15.6",
"body-parser": "1.18.2",
"cookie-parser": "1.4.3",
"compression": "1.7.1",
"method-override": "2.3.10",
"http-status-codes": "1.3.0",
"inversify": "4.5.1",
"inversify-express-utils": "4.1.0",
"reflect-metadata": "0.1.10",
"morgan": "1.9.0",
"mongodb": "2.2.33",
"mysql": "2.15.0",
"typeorm": "0.1.2",
"class-validator": "0.7.3",
"winston": "2.4.0"
},
"devDependencies": {
"@types/body-parser": "1.16.7",
"@types/chai": "4.0.4",
"@types/express": "4.0.39",
"@types/es6-shim": "0.31.35",
"@types/mocha": "2.2.44",
"@types/sinon": "2.3.7",
"@types/supertest": "2.0.3",
"@types/mongodb": "2.2.15",
"apidoc": "0.17.6",
"chai": "4.1.2",
"concurrently": "3.5.0",
"istanbul": "1.1.0-alpha.1",
"mocha": "4.0.1",
"nodemon": "1.12.1",
"rimraf": "2.6.2",
"sinon": "4.1.1",
"supertest": "3.0.0",
"ts-node": "3.3.0",
"tslint": "5.8.0",
"typescript": "2.6.1",
"wait-on": "2.0.2"
},
"engines": {
"node": ">= 7.6.0"
}
}