-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.25 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.25 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
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "nko2016-codingsans",
"version": "0.0.1",
"description": "CodingSans NodeKnockout",
"main": "app/app.js",
"scripts": {
"start": "node app/app.js",
"build": "node app/builder.js && cp -R ./app/client/public/* ./app/client/build/",
"test": "NODE_ENV=test mocha -r co-mocha './app/**/__tests__/**/*.spec.js'",
"lint": "standard"
},
"dependencies": {
"@slack/client": "^3.6.1",
"blueimp-md5": "^2.5.0",
"boom": "^4.2.0",
"bunyan": "^1.8.4",
"bunyan-prettystream": "^0.1.3",
"bunyan-rollbar": "^0.1.0",
"bunyan-syslog": "https://github.com/o20ne/node-bunyan-syslog.git#8279b07eabaaebfc81a1c8cc2af11b049d6fe859",
"co": "^4.6.0",
"convict": "^1.5.0",
"dotenv": "^2.0.0",
"es6-shim": "^0.35.1",
"grant-koa": "^3.6.5",
"koa": "^1.2.4",
"koa-better-body": "^3.0.2",
"koa-bunyan-logger": "^1.3.0",
"koa-connect-history-api-fallback": "0.3.0",
"koa-helmet": "git+ssh://git@github.com/venables/koa-helmet.git#koa-1",
"koa-mount": "^1.3.0",
"koa-router": "^5.4.0",
"koa-session": "^3.4.0",
"koa-static": "^2.0.0",
"lodash": "^4.16.6",
"moment": "^2.16.0",
"mongoose": "^4.6.7",
"rollbar": "^0.6.2"
},
"devDependencies": {
"@angular/animations": "^4.0.3",
"@angular/common": "^4.0.0",
"@angular/compiler": "^4.0.0",
"@angular/core": "^4.0.0",
"@angular/forms": "^4.0.0",
"@angular/http": "^4.0.0",
"@angular/material": "^2.0.0-beta.3",
"@angular/platform-browser": "^4.0.0",
"@angular/platform-browser-dynamic": "^4.0.0",
"@angular/router": "^4.0.0",
"@types/chai": "^3.4.33",
"@types/core-js": "^0.9.34",
"@types/lodash": "^4.14.38",
"@types/node": "^6.0.46",
"angular2-template-loader": "^0.6.2",
"awesome-typescript-loader": "^3.1.2",
"co-mocha": "^1.1.3",
"codelyzer": "~1.0.0-beta.2",
"convict": "^1.5.0",
"copy-webpack-plugin": "^4.0.0",
"core-js": "^2.4.1",
"css-loader": "^0.28.0",
"dotenv": "^2.0.0",
"exports-loader": "^0.6.4",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"html-loader": "^0.4.5",
"html-webpack-plugin": "^2.28.0",
"identicon.js": "^1.3.0",
"imports-loader": "^0.7.1",
"jshashes": "^1.0.5",
"json-loader": "^0.5.4",
"koa-webpack-dev-middleware": "^1.4.5",
"mocha": "^3.1.2",
"raw-loader": "^0.5.1",
"rimraf": "^2.5.2",
"rxjs": "^5.1.0",
"standard": "^8.5.0",
"style-loader": "^0.16.1",
"tslint": "^5.1.0",
"typescript": "^2.2.2",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.2",
"zone.js": "^0.8.4"
},
"engines": {
"node": ">=6 <7",
"npm": ">=3.10"
},
"repository": {
"type": "git",
"url": "https://github.com/rumblex-community/nodeknockout-2016-starter"
},
"keywords": [
"node"
],
"author": "Coding Sans",
"contributors": [
"Imre 'Rover' Racz <rover@ustream.tv> (https://www.linkedin.com/in/imre-racz-a48a3095)",
"Gabor 'LaTotty' Toth <latotty@codingsans.com> (https://www.codingsans.com)",
"Akos Szokodi <akos@codingsans.com>",
"Laszlo 'Lacka' Csele <lacka@codingsans.com> (https://hu.linkedin.com/in/lászló-csele-008754a5)"
],
"license": "MIT",
"standard": {
"ignore": [
"app/client/**"
]
}
}