-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.24 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.24 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
{
"name": "analytics-front",
"version": "0.6.0",
"description": "Analytics Front - Maestro Server",
"author": "Felipe Klerk Signorini <felipeklerk@yahoo.com.br>",
"main": "server.js",
"scripts": {
"server": "nodemon -L server.js",
"watch": "gulp watch",
"compile": "gulp compile",
"build": "gulp build",
"minify": "gulp minify",
"test": "mocha test/**/*js --timeout 5000 --reporter spec --exit",
"e2e": "gulp test_e2e",
"unit": "gulp test_unit",
"lint": "gulp eslint",
"tdd": "gulp tdd",
"package": "docker build -t 'analytics-front-maestro' .",
"docs": "gulp apidocs --name graph",
"coverage": "nyc --reporter=lcov mocha test/**/*js --timeout 5000 --exit"
},
"dependencies": {
"adaro": "^1.0.4",
"app-module-path": "~2.2.0",
"aws-sdk": "^2.649.0",
"axios": "^0.19.2",
"bcrypt": "^3.0.6",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"co": "~4.6.0",
"construx": "~1.0.1",
"construx-copier": "~1.0.0",
"content-filter": "~1.1.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"joi": "^14.3.1",
"joi-objectid": "~3.0.1",
"jwt-simple": "^0.5.6",
"kraken-js": "^2.3.0",
"lodash": "^4.17.15",
"mongodb": "^3.6.2",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"svg-to-png": "^4.0.0",
"svg2png": "^4.1.1"
},
"devDependencies": {
"browserify": "^16.5.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-deep-match": "^1.2.1",
"chaid": "^1.0.2",
"codacy-coverage": "^3.4.0",
"codeclimate-test-reporter": "~0.5.1",
"coveralls": "^3.0.11",
"eslint": "^6.8.0",
"gulp": "^4.0.2",
"gulp-apidoc": "^0.2.8",
"gulp-clean-css": "^4.3.0",
"gulp-eslint": "^6.0.0",
"gulp-load-plugins": "~2.0.2",
"gulp-mocha": "^7.0.2",
"gulp-uglify-es": "^2.0.0",
"jquery": "^3.4.1",
"minimist": "^1.2.0",
"mocha": "^7.1.1",
"mocha-lcov-reporter": "^1.3.0",
"mustache": "^4.0.1",
"mustache.js": "^1.0.0",
"node-mocks-http": "^1.8.1",
"nodemon": "^2.0.2",
"nyc": "^15.0.0",
"sinon": "^9.0.1",
"supertest": "^4.0.2",
"svg-pan-zoom": "^3.6.1",
"svg.js": "^2.7.1",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
}
}