This repository was archived by the owner on Jul 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
122 lines (122 loc) · 3.66 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
{
"name": "score-uasc",
"version": "0.3.0",
"description":
"Sistema web de alocação de horário para os auditórios da UFCG.",
"main": "app.js",
"scripts": {
"prestart": "yarn install",
"start": "babel-node app.js",
"pretest": "yarn install",
"test": "npm run coverage || exit 1",
"coverage":
"npm run coverage-server && npm run coverage-client && npm run merge-lcov",
"coverage-client": "gulp --gulpfile client/gulpfile.js test",
"coverage-server":
"./node_modules/.bin/babel-node ./node_modules/babel-istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- --reporter nyan --recursive \"./server/src/test/**/*.test.js\"",
"merge-lcov":
"./node_modules/.bin/lcov-result-merger './coverage/lcov*.info' 'lcov.info'",
"coveralls": "cat lcov.info | coveralls",
"minify":
"gulp --gulpfile client/gulpfile.js copy && gulp --gulpfile client/gulpfile.js usemin"
},
"engines": {
"node": "^8.9.0",
"npm": "^5.4.3"
},
"private": true,
"author": "",
"license": "Apache-2.0",
"devDependencies": {
"babel-cli": "^6.24.1",
"browser-sync": "^2.18.5",
"chai": "^4.1.0",
"chai-as-promised": "5.3.0",
"coveralls": "^2.13.1",
"gulp": "^3.9.1",
"gulp-clean-css": "^3.7.0",
"gulp-concat": "^2.6.1",
"gulp-header": "^1.8.8",
"gulp-mocha": "^4.3.1",
"gulp-rename": "^1.2.2",
"gulp-run": "^1.7.1",
"gulp-uglify": "^3.0.0",
"gulp-usemin": "^0.3.26",
"jasmine-core": "^2.5.2",
"jsonwebtoken": "^8.0.1",
"karma": "^1.3.0",
"karma-chai": "^0.1.0",
"karma-chai-as-promised": "^0.1.2",
"karma-chai-plugins": "^0.6.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-ng-html2js-preprocessor": "^1.0.0",
"karma-nyan-reporter": "^0.2.4",
"karma-sinon": "^1.0.5",
"lcov-result-merger": "^1.2.0",
"mocha": "^3.2.0",
"mockery": "^2.0.0",
"should": "^13.1.0",
"sinon": "^4.0.0",
"supertest": "^3.0.0"
},
"dependencies": {
"angular": "^1.7.9",
"angular-animate": "^1.6.2",
"angular-aria": "^1.6.2",
"angular-elastic-input": "^2.4.0",
"angular-jwt": "^0.1.9",
"angular-lock": "^2.0.2",
"angular-material": "^1.1.1",
"angular-material-calendar": "^0.2.14",
"angular-messages": "^1.6.4",
"angular-mocks": "^1.6.2",
"angular-storage": "0.0.15",
"angular-touch": "^1.6.2",
"angular-ui-bootstrap": "^2.5.0",
"angular-ui-calendar": "^1.0.2",
"angular-ui-mask": "^1.8.7",
"angular-ui-router": "^1.0.3",
"auth0": "^2.7.0",
"auth0-angular": "^4.2.7",
"auth0-js": "^9.3.0",
"auth0-lock": "^10.7.3",
"babel-core": "^6.25.0",
"babel-istanbul": "^0.12.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-2": "^6.24.1",
"body-parser": "*",
"bootstrap": "^3.3.7",
"bootstrap-material-design": "^0.5.10",
"cors": "^2.8.1",
"express": "^4.14.0",
"express-jwt": "^5.1.0",
"font-awesome": "^4.7.0",
"fs": "0.0.2",
"fullcalendar": "^3.4.0",
"gulp-babel": "^7.0.0",
"gulp-git": "^2.4.1",
"gulp-gitignore": "^0.1.0",
"gulp-istanbul": "^1.1.1",
"gulp-jshint": "^2.0.4",
"gulp-minify-html": "^1.0.6",
"gulp-prompt": "^1.0.0",
"gulp-rev": "^8.0.0",
"gulp-run": "^1.7.1",
"isparta": "^4.0.0",
"jquery": "^3.1.1",
"jquery-mask-plugin": "^1.14.11",
"jshint": "^2.9.4",
"lodash": "^4.17.13",
"moment": "^2.29.2",
"mongoose": "^5.7.5",
"morgan": "^1.8.2",
"ngstorage": "^0.3.11",
"node-schedule": "^1.2.0",
"path": "^0.12.7",
"request": "^2.81.0",
"run-sequence": "^2.0.0"
}
}