-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
112 lines (112 loc) · 3.47 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "claimBook",
"license": "MIT",
"version": "1.0.0-candidate",
"private": true,
"scripts": {
"serve": "DEBUG=claimBook* && node ./bin/www",
"preinstall": "command -v bower || npm install -g bower & command -v tsd || npm install -g tsd & command -v typings || npm install -g typings && typings install && bower install",
"build": "node_modules/typescript/bin/tsc --outDir dist/app",
"prestart": "test -d './dist/routes' || gulp && test -d './dist/app' || npm run build",
"start": "DEBUG=claimBook* && node ./bin/www",
"prune": "rm -rf dist",
"debug": "node-debug bin/www",
"test": "node_modules/jasmine-node/bin/jasmine-node --verbose src/test/*.ts",
"testBuild": "rm -rf dist/test && node_modules/typescript/bin/tsc ./src/test/*.ts --module commonjs --outDir ./dist",
"test:build": "npm run testBuild && npm run test",
"watch": "rm -rf dist/app && echo '\\033[0;32m Stand by for compilation:\\033[m' && node_modules/typescript/bin/tsc --outDir dist/app --noLib -w --noResolve & npm run serve",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"engines": {
"node": "5.6.0",
"npm": "3.6.0"
},
"bugs": {
"url": "https://github.com/bamtron5/mean-ngtwo/issues",
"email": "brandon@brandonam.com"
},
"author": {
"name": "Brandon Morrison",
"email": "brandon@brandonam.com",
"url": "http://brandonam.com"
},
"dependencies": {
"acl": "^0.4.9",
"angular2": "^2.0.0-beta.17",
"babel-preset-es2015": "^6.6.0",
"bcrypt": "^0.8.5",
"better-console": "^0.2.4",
"bindings": "^1.2.1",
"body-parser": "~1.17.2",
"bootstrap": "^3.3.6",
"bower": "^1.7.7",
"colors": "^1.1.2",
"connect-flash": "^0.1.1",
"cookie-parser": "~1.3.5",
"cookie-session": "^2.0.0-alpha.1",
"debug": "~2.6.7",
"del": "^2.2.0",
"dotenv": "^2.0.0",
"ejs": "^2.4.1",
"ejs-locals": "^1.0.2",
"es6-promise": "^3.0.2",
"es6-shim": "^0.35.0",
"express": "~4.15.3",
"express-jwt": "^5.3.0",
"extend": "^3.0.0",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^3.1.0",
"gulp-babel": "^6.1.2",
"gulp-chmod": "^1.3.0",
"gulp-clone": "^1.0.0",
"gulp-concat": "^2.6.0",
"gulp-concat-css": "^2.2.0",
"gulp-copy": "0.0.2",
"gulp-dedupe": "0.0.2",
"gulp-flatten": "^0.2.0",
"gulp-header": "^1.7.1",
"gulp-help": "^1.6.1",
"gulp-if": "^2.0.0",
"gulp-less": "^3.0.5",
"gulp-minify-css": "^1.2.4",
"gulp-notify": "^2.2.0",
"gulp-plumber": "^1.1.0",
"gulp-print": "^2.0.1",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.5.4",
"gulp-rtlcss": "^1.0.0",
"gulp-uglify": "^1.5.3",
"gulp-util": "^3.0.7",
"gulp-watch": "^4.3.5",
"jasmine-node": "^1.14.5",
"jsonwebtoken": "^7.4.1",
"map-stream": "0.0.6",
"microm": "^0.2.4",
"mongoose": "^4.6.8",
"mongoose-text-search": "0.0.2",
"morgan": "~1.8.2",
"nodemailer": "^2.1.0",
"passport": "^0.3.2",
"re-captcha": "0.0.3",
"reflect-metadata": "0.1.2",
"require-dot-file": "^0.4.0",
"run-sequence": "^1.1.5",
"rxjs": "5.0.0-beta.6",
"semantic-ui": "^2.1.8",
"serve-favicon": "~2.4.3",
"socket.io": "^2.0.0",
"systemjs": "^0.19.18",
"typescript": "1.7.5",
"typings": "^0.6.8",
"yamljs": "^0.2.6",
"zone.js": "0.6.12",
"snyk": "^1.31.0"
},
"devDependencies": {
"babel-cli": "^6.0.0",
"inquirer": "^0.11.1",
"jasmine-core": "2.4.1"
},
"snyk": true
}