forked from linnovate/mean
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
134 lines (134 loc) · 3.8 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "mean",
"description": "MEAN.io: A fullstack JavaScript framework powered by MongoDB, ExpressJS, AngularJS, NodeJS.",
"version": "0.6.1",
"private": false,
"author": "Linnovate <[email protected]>",
"contributors": "https://github.com/linnovate/mean/graphs/contributors",
"mean": "0.6.1",
"repository": {
"type": "git",
"url": "https://github.com/linnovate/mean.git"
},
"license": "MIT",
"scripts": {
"start": "node server",
"mocha": "node tools/test/run-mocha.js",
"karma": "node node_modules/karma/bin/karma start karma.conf.js",
"test": "gulp test",
"test-e2e": "gulp e2e.test",
"postinstall": "node tools/scripts/postinstall.js",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"dependencies": {
"angular": "^1.5.5",
"angular-animate": "^1.5.8",
"angular-aria": "^1.5.8",
"angular-bootstrap": "^0.12.2",
"angular-cookies": "^1.5.2",
"angular-jwt": "latest",
"angular-material": "^1.1.0",
"angular-mocks": "^1.5.2",
"angular-resource": "^1.5.2",
"angular-route": "^1.5.2",
"angular-sanitize": "^1.5.2",
"angular-ui-router": "0.3.1",
"angular-ui-select": "^0.12.100",
"body-parser": "latest",
"bootstrap": "latest",
"compression": "latest",
"connect-flash": "latest",
"connect-modrewrite": "latest",
"consolidate": "latest",
"express": "^4.14.0",
"helmet": "^2.1.1",
"lodash": "latest",
"meanio": "^0.9.0",
"meanio-admin": "git://github.com/linnovate/meanio-admin.git",
"meanio-circles": "git://github.com/linnovate/meanio-circles.git",
"meanio-system": "git://github.com/linnovate/meanio-system.git",
"meanio-users": "git://github.com/linnovate/meanio-users.git",
"morgan": "latest",
"npm": "^3.x",
"q": "latest",
"request": "latest",
"shelljs": "latest",
"snyk": "^1.17.5",
"view-helpers": "latest"
},
"devDependencies": {
"babel-core": "^6.7.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-1": "^6.5.0",
"css-loader": "^0.24.0",
"del": "latest",
"expect.js": "latest",
"file-loader": "^0.8.5",
"gulp": "latest",
"gulp-concat": "latest",
"gulp-csslint": "latest",
"gulp-cssmin": "latest",
"gulp-less": "latest",
"gulp-livereload": "latest",
"gulp-load-plugins": "latest",
"gulp-mocha": "latest",
"gulp-nodemon": "latest",
"gulp-sass": "latest",
"gulp-standard": "^8.0.2",
"gulp-uglify": "latest",
"gulp-util": "latest",
"jasmine": "latest",
"jasmine-reporters": "latest",
"jquery": "latest",
"jsonwebtoken": "latest",
"karma": "latest",
"karma-chrome-launcher": "latest",
"karma-coffee-preprocessor": "latest",
"karma-coverage": "latest",
"karma-firefox-launcher": "latest",
"karma-html2js-preprocessor": "latest",
"karma-jasmine": "latest",
"karma-junit-reporter": "latest",
"karma-ng-html2js-preprocessor": "latest",
"karma-phantomjs-launcher": "latest",
"karma-phantomjs-shim": "latest",
"karma-requirejs": "latest",
"karma-script-launcher": "latest",
"karma-webpack": "^1.7.0",
"mocha": "latest",
"phantomjs-prebuilt": "latest",
"protractor": "latest",
"require-dir": "latest",
"requirejs": "latest",
"standard": "^8.0.0",
"style-loader": "^0.13.1",
"supertest": "latest",
"through": "latest",
"url-loader": "^0.5.7",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1"
},
"standard": {
"globals": [
"$",
"_",
"alert",
"after",
"afterEach",
"angular",
"before",
"beforeEach",
"browser",
"confirm",
"describe",
"expect",
"it",
"jasmine",
"localStorage",
"XMLHttpRequest"
]
},
"snyk": true
}