-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
104 lines (104 loc) · 2.76 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
{
"name": "MEAN_STACK_2",
"version": "1.9.3-beta.4",
"description": "This is just a blue print for my mean stack applications.",
"private": "true",
"main": "app.js",
"scripts": {
"start": "nodemon app.js",
"test": "mocha",
"gulp": "gulp",
"webpack": "webpack --config webpack.config.js -p",
"webpack:watch": "webpack --watch -p",
"imagemin": "gulp imagemin",
"fontmin": "gulp font",
"sass": "gulp compass",
"minify-css": "gulp minify-css"
},
"dependencies": {
"@angular/common": "^2.4.1",
"@angular/compiler": "^2.4.1",
"@angular/core": "^2.4.1",
"@angular/forms": "^2.4.1",
"@angular/http": "^2.4.1",
"@angular/platform-browser": "^2.4.1",
"@angular/platform-browser-dynamic": "^2.4.1",
"@angular/router": "^3.4.1",
"angular2-in-memory-web-api": "0.0.21",
"babel-core": "^6.21.0",
"body-parser": "*",
"bootstrap": "^4.0.0-alpha.5",
"compression": "*",
"connect-busboy": "*",
"cookie-parser": "*",
"core-js": "^2.4.1",
"csurf": "*",
"errorhandler": "*",
"express": "*",
"express-session": "^1.14.2",
"jquery": "^3.1.1",
"jquery-parallax.js": "^1.4.3",
"method-override": "*",
"moment": "^2.17.1",
"mongoose": "*",
"mongoskin": "*",
"morgan": "*",
"multer": "^1.2.1",
"oauth": "^0.9.14",
"pug": "*",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-router": "^3.0.0",
"react-scripts": "^0.8.4",
"reflect-metadata": "^0.1.9",
"rxjs": "^5.0.2",
"serve-favicon": "^2.3.2",
"serve-index": "^1.8.0",
"session": "*",
"static-favicon": "*",
"zone.js": "^0.7.4"
},
"author": "danny mcwaves",
"email": "[email protected]",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/DannyMcwaves/MEANSEED-2.git"
},
"babel": {
"presets": [
"es2015",
"react"
]
},
"devDependencies": {
"babel-loader": "^6.2.10",
"babel-preset-angular2": "0.0.2",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"concurrently": "^3.1.0",
"css-loader": "^0.26.1",
"eslint": "^3.12.2",
"expect.js": "^0.3.1",
"extract-text-webpack-plugin": "^2.0.0-beta.4",
"file-loader": "latest",
"gulp": "^3.9.1",
"gulp-changed": "^1.3.2",
"gulp-clean-css": "^2.3.2",
"gulp-compass": "^2.1.0",
"gulp-fontmin": "^0.7.4",
"gulp-imagemin": "^3.1.1",
"gulp-mocha": "^3.0.1",
"gulp-util": "^3.0.8",
"lite-server": "^2.2.2",
"mocha": "^3.2.0",
"node-sass": "^4.1.1",
"resolve-url-loader": "^1.6.1",
"run-sequence": "^1.2.2",
"sass-loader": "^4.1.1",
"style-loader": "^0.13.1",
"superagent": "^3.3.1",
"url-loader": "^0.5.7",
"webpack": "^2.2.0-rc.3"
}
}