-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.28 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.28 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
{
"name": "ts_proj",
"version": "1.0.0",
"description": "Full-Stack Typescript with MongoDB, Express, AngularJS and Node.js",
"scripts": {
"clean": "rm -rf node_modules/ public/lib/",
"reinstall": "npm cache clean && npm run clean && npm install",
"start": "gulp",
"start:prod": "gulp prod",
"postinstall": "bower install --config.interactive=false"
},
"repository": {
"type": "git",
"url": "git+ssh://git@bitbucket.org/liudy/meants.git"
},
"engines": {
"node": ">=6.3.1",
"npm": ">=3.10.3"
},
"keywords": [
"typescript",
"mongodb",
"express",
"angular",
"nodejs"
],
"author": "Dongyu Liu",
"license": "MIT",
"homepage": "https://bitbucket.org/liudy/ts_mean",
"dependencies": {
"body-parser": "^1.15.2",
"bson": "^1.0.4",
"chalk": "^1.1.3",
"compression": "^1.6.2",
"connect-flash": "^0.1.1",
"consolidate": "^0.14.5",
"cookie-parser": "^1.4.3",
"express": "^4.14.0",
"express-winston": "^2.1.2",
"glob": "^7.1.1",
"lodash": "^4.17.4",
"method-override": "^2.3.7",
"mongodb": "^2.2.16",
"mongoose": "^4.7.5",
"morgan": "^1.7.0",
"serve-favicon": "^2.3.2",
"serve-static": "^1.11.1",
"swig": "^1.4.2",
"through": "^2.3.8",
"winston": "^2.3.0"
},
"devDependencies": {
"@types/angular": "^1.5.8",
"@types/chalk": "^0.4.31",
"@types/d3": "^4.4.0",
"@types/express": "^4.0.34",
"@types/glob": "^5.0.30",
"@types/jquery": "^2.0.37",
"@types/lodash": "^4.14.45",
"@types/mongoose": "^4.7.2",
"@types/node": "^6.0.55",
"bower": "^1.8.0",
"gulp": "^3.9.1",
"gulp-angular-templatecache": "^2.0.0",
"gulp-autoprefixer": "^3.1.1",
"gulp-clean": "^0.3.2",
"gulp-concat": "^2.6.1",
"gulp-csslint": "^1.0.0",
"gulp-cssmin": "^0.1.7",
"gulp-less": "^3.3.0",
"gulp-livereload": "^3.8.1",
"gulp-load-plugins": "^1.4.0",
"gulp-ng-annotate": "^2.0.0",
"gulp-nodemon": "^2.2.1",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^1.9.1",
"gulp-tsconfig": "^0.1.0",
"gulp-tslint": "^7.0.1",
"gulp-typescript": "^3.1.3",
"gulp-uglify": "^2.0.0",
"gulp-util": "^3.0.8",
"run-sequence": "^1.2.2",
"tslint": "^4.2.0",
"typescript": "^2.1.4",
"wiredep": "^4.0.0"
}
}