-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
92 lines (92 loc) · 2.94 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
89
90
91
92
{
"name": "docker-nodejs-typescript-starter",
"version": "0.0.1",
"description": "Docker, NodeJS/Typescript and TypeORM Starter",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/venturachrisdev/docker-nodejs-typescript-starter"
},
"author": "Christopher Ventura",
"scripts": {
"start": "yarn serve",
"build": "yarn build-ts && yarn tslint",
"serve": "node dist/server.js",
"watch-node": "nodemon dist/server.js",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"yarn watch-ts\" \"yarn watch-node\"",
"watch-test": "yarn test -- --watchAll",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"debug": "yarn build && yarn watch-debug",
"serve-debug": "nodemon --inspect dist/server.js",
"seed": "ts-node seeders/Seed.ts",
"migrate": "typeorm migration:run",
"test": "jest unit --forceExit --verbose",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"yarn watch-ts\" \"yarn serve-debug\""
},
"dependencies": {
"assert": "^1.4.1",
"async": "^2.6.0",
"bcrypt": "2.0.0",
"bcrypt-nodejs": "^0.0.3",
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"ceylon": "^0.9.1",
"compression": "^1.7.1",
"dotenv": "^4.0.0",
"errorhandler": "^1.5.0",
"express": "^4.16.2",
"express-flash": "0.0.2",
"express-session": "^1.15.6",
"express-validator": "^4.3.0",
"fbgraph": "^1.4.1",
"global": "^4.3.2",
"jsonwebtoken": "^8.3.0",
"lodash": "^4.17.4",
"lusca": "^1.5.2",
"morgan": "^1.9.0",
"nodemailer": "^4.4.1",
"passport": "^0.4.0",
"passport-facebook": "^2.1.1",
"passport-local": "^1.0.0",
"pg": "^7.4.3",
"request": "^2.83.0",
"request-promise": "^4.2.2",
"tslint-config-airbnb": "^5.9.2",
"typeorm": "^0.2.7",
"typescript": "^3.2.2",
"winston": "^2.4.0"
},
"devDependencies": {
"@types/async": "^2.0.45",
"@types/bcrypt": "^2.0.0",
"@types/bcrypt-nodejs": "^0.0.30",
"@types/bluebird": "^3.5.20",
"@types/body-parser": "^1.16.8",
"@types/compression": "^0.0.35",
"@types/dotenv": "^4.0.2",
"@types/errorhandler": "^0.0.32",
"@types/express": "^4.11.1",
"@types/express-session": "^1.15.8",
"@types/jest": "^22.1.3",
"@types/jsonwebtoken": "^7.2.8",
"@types/lodash": "^4.14.91",
"@types/lusca": "^1.5.0",
"@types/morgan": "^1.7.35",
"@types/node": "^9.4.6",
"@types/nodemailer": "^4.3.4",
"@types/passport": "^0.4.3",
"@types/passport-facebook": "^2.1.7",
"@types/passport-local": "^1.0.32",
"@types/request": "^2.47.0",
"@types/supertest": "^2.0.4",
"chai": "^4.1.2",
"concurrently": "^3.5.1",
"jest": "^23.6.0",
"nodemon": "^1.13.0",
"supertest": "^3.0.0",
"ts-node": "^5.0.0",
"tslint": "^5.9.1"
}
}