-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.33 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
{
"name": "scaffold",
"version": "0.1.0",
"description": "scaffolding for mean applications",
"repository": {
"type": "git",
"url": "https://github.com/waldnzwrld/MEAN-scaffold.git"
},
"main": "server.js",
"scripts": {
"test": "./node_modules/.bin/mocha --reporter spec",
"postinstall": "jspm install && gulp build-semantic"
},
"keywords": [
"tenant management"
],
"author": "Walden",
"license": "ISC",
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.14.2",
"busboy": "^0.2.12",
"chai": "^3.4.1",
"express": "^4.13.3",
"kerberos": "~0.0.17",
"mongoose": "^4.3.5",
"morgan": "^1.6.1",
"request": "^2.67.0"
},
"devDependencies": {
"gulp": "^3.9.0",
"gulp-html-replace": "^1.5.5",
"gulp-jshint": "^2.0.0",
"gulp-ng-annotate": "^1.1.0",
"gulp-nodemon": "^2.0.6",
"gulp-plumber": "^1.0.1",
"gulp-rename": "^1.2.2",
"gulp-template": "^3.1.0",
"gulp-uglify": "^1.5.2",
"jasmine-node": "^1.14.5",
"jshint": "^2.9.1",
"jshint-stylish": "^2.1.0",
"jspm": "^0.16.27",
"less-middleware": "^2.0.1",
"mocha": "^2.3.4",
"pluralize": "^1.2.1",
"rimraf": "^2.5.2",
"semantic-ui": "^2.1.8",
"yargs": "^3.32.0"
},
"jspm": {
"directories": {
"baseURL": "public"
},
"configFile": "public/jspm.config.js",
"dependencies": {
"angular": "github:angular/bower-angular@^1.5.0",
"angular-animate": "github:angular/bower-angular-animate@^1.5.0",
"angular-local-storage": "npm:angular-local-storage@^0.2.2",
"angular-mocks": "github:angular/bower-angular-mocks@^1.5.0",
"angular-ui-router": "github:angular-ui/ui-router@^0.2.18",
"css": "github:systemjs/plugin-css@^0.1.20",
"jquery": "npm:jquery@^2.2.0",
"necolas/normalize.css": "github:necolas/normalize.css@^3.0.3",
"normalize.css": "github:necolas/normalize.css@^3.0.3",
"systemjs/plugin-css": "github:systemjs/plugin-css@^0.1.20",
"systemjs/plugin-text": "github:systemjs/plugin-text@^0.0.4",
"text": "github:systemjs/plugin-text@^0.0.4"
},
"devDependencies": {
"babel": "npm:babel-core@^5.8.24",
"babel-runtime": "npm:babel-runtime@^5.8.24",
"core-js": "npm:core-js@^1.1.4",
"systemjs-hot-reloader": "github:capaj/systemjs-hot-reloader@^0.5.6"
}
}
}