-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 3.04 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
82
83
84
85
86
87
88
{
"name": "ts-boilerplater-services",
"version": "1.0.0",
"description": "Microservice boilerplate using typescript and express",
"main": "out/app.js",
"scripts": {
"prebuild": "rm -rf ./out",
"build": "npm run tsc",
"postbuild": "mkdir -p ./out/cfg/defaults && cp -rf ./src/cfg/defaults/ ./out/cfg/defaults/",
"coverage": "npm run test-cov && npm run test-remap",
"postinstall": "npm run build",
"test-server": "NODE_ENV=test ./node_modules/.bin/ts-node -P ./ ./src/app.ts",
"lint": "tslint ./src/*/**.ts",
"test:bdd": "NODE_ENV=test cucumber.js --compiler ts:ts-node/register bdd -r bdd/steps -r bdd/support",
"test:unit": "NODE_ENV=test mocha -r ts-node/register --reporter spec --check-leaks --bail src/**/*.spec.ts bdd/**/*.spec.ts",
"test": "NODE_ENV=test concurrently \"npm run test:bdd\" \"npm run test:unit\"",
"tsc": "./node_modules/.bin/tsc --project tsconfig.json",
"tsc:w": "tsc -w",
"start": "concurrently \"npm run tsc:w\" \"nodemon out/app.js\"",
"seeds:create": "sequelize seed:generate --name",
"migrations:create": "sequelize migration:generate --name",
"migrations:up": "sequelize db:migrate",
"migrations:down": "sequelize db:migrate:undo:all",
"db:seed": "sequelize db:seed:all"
},
"author": "Chris Pavlicek",
"license": "ISC",
"dependencies": {
"a": "^2.1.1",
"blocked": "^1.2.1",
"body-parser": "^1.15.2",
"compression": "^1.6.2",
"cookie-parser": "^1.4.3",
"dotenv": "^4.0.0",
"express": "^4.16.2",
"express-session": "^1.14.2",
"http-status-codes": "^1.3.0",
"menna": "^1.0.3",
"method-override": "^2.3.6",
"mysql2": "^1.2.0",
"pg": "^7.3.0",
"ramda": "^0.24.1",
"reflect-metadata": "^0.1.10",
"safe-compare": "^1.0.3",
"sequelize": "^4.13.17",
"sequelize-typescript": "^0.5.0",
"swagger-express-middleware": "^1.0.0-alpha.12",
"swagger-ui-express": "^2.0.8",
"ts-express-decorators": "git+https://github.com/varsis/ts-express-decorators",
"typescript": "^2.6.1"
},
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/dotenv": "^4.0.1",
"@types/express": "^4.0.37",
"@types/mocha": "^2.2.44",
"@types/node": "^8.0.34",
"@types/prettyjson": "0.0.28",
"@types/ramda": "^0.24.18",
"@types/supertest": "^2.0.3",
"@types/supertest-as-promised": "^2.0.34",
"@types/swagger-schema-official": "^2.0.6",
"@types/winston": "^2.3.6",
"chai": "^4.1.2",
"concurrently": "^3.1.0",
"cucumber": "^3.0.6",
"cucumber-tsflow": "^2.2.0",
"json2yaml": "^1.1.0",
"mocha": "^4.0.1",
"nodemon": "^1.11.0",
"prettyjson": "^1.2.1",
"sequelize-cli": "^3.0.0",
"sinon": "^4.1.1",
"sqlite3": "^3.1.13",
"supertest": "^3.0.0",
"supertest-as-promised": "^4.0.2",
"ts-node": "^3.3.0",
"tslint": "^5.7.0",
"tslint-config-airbnb": "^5.3.0",
"tslint-config-airbnb-base": "^0.1.0",
"tslint-eslint-rules": "^4.1.1",
"umzug": "^2.1.0",
"uuid-validate": "0.0.2"
},
"nodemonConfig": {
"delay": "2500"
}
}