This repository was archived by the owner on Sep 4, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.17 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.17 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
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": "mean-dash",
"version": "1.0.0",
"description": "A dashboard built on the MEAN stack",
"main": "app/index.js",
"scripts": {
"start": "npm run dev && node server",
"dev": "npm run build && gulp",
"build": "node node_modules/.bin/webpack && cp app/index.html public/index.html",
"test": "mocha --require babel-register",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"prepublish": "npm run snyk-protect; npm run build",
"fix": "standard --fix",
"server": "http-server -a '0.0.0.0' -p '5000'",
"snyk-protect": "snyk protect"
},
"engines": {
"node": ">=0.8.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OperationCode/mean-dash.git"
},
"author": "The MEAN Squad",
"license": "MIT",
"bugs": {
"url": "https://github.com/OperationCode/mean-dash/issues"
},
"homepage": "https://github.com/OperationCode/mean-dash#readme",
"dependencies": {
"angular": "1.5.0",
"angular-messages": "1.5.0",
"angular-mocks": "1.5.0",
"angular-route": "1.5.0",
"api-check": "^6.0.10",
"babel-core": "^6.5.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"body-parser": "^1.17.1",
"browser-sync": "^2.18.8",
"chai": "^3.5.0",
"coveralls": "^2.12.0",
"css-loader": "^0.9.1",
"express": "^4.15.2",
"file-loader": "^0.8.1",
"gulp": "^3.9.1",
"gulp-rename": "^1.2.2",
"gulp-template": "^4.0.0",
"http-server": "^0.9.0",
"istanbul": "^0.4.5",
"js-yaml": "^3.8.2",
"jshint": "2.9.3",
"jshint-loader": "^0.8.3",
"karma": "0.13.5",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^0.1.7",
"karma-mocha": "^0.1.10",
"karma-webpack": "^1.5.0",
"lcov-parse": "0.0.10",
"lodash": "^4.17.4",
"log-driver": "^1.2.5",
"minimist": "^1.2.0",
"mocha": "^3.2.0",
"mocha-lcov-reporter": "^1.3.0",
"ng-annotate-loader": "^0.1.1",
"nib": "^1.1.0",
"node-sass": "^4.5.1",
"raw-loader": "^0.5.1",
"request": "^2.81.0",
"run-sequence": "^1.2.2",
"sass-loader": "^6.0.3",
"should": "^11.2.1",
"sinon-restore": "^1.0.1",
"spec": "^1.0.1",
"style-loader": "^0.8.3",
"url-loader": "^0.5.5",
"webpack": "^2.3.2",
"webpack-core": "^0.5.0",
"webpack-dev-server": "^1.7.0",
"webpack-stream": "^3.2.0",
"snyk": "^1.41.1"
},
"devDependencies": {
"assert": "^1.4.1",
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.24.0",
"babelify": "^7.3.0",
"browserify": "^13.0.1",
"coveralls": "^2.12.0",
"gulp": "^3.9.0",
"gulp-connect": "^4.1.0",
"gulp-jshint": "^2.0.1",
"gulp-load-plugins": "^1.0.0-rc.1",
"gulp-ng-annotate": "^2.0.0",
"gulp-sourcemaps": "^1.5.2",
"gulp-uglify": "^1.2.0",
"jshint-stylish": "^2.0.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^0.1.12",
"karma-mocha": "^0.1.10",
"mocha": "^3.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^10.1.2",
"should": "^11.2.1",
"standard": "^9.0.2",
"supertest": "^3.0.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
},
"snyk": true
}