-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.38 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.38 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
{
"name": "Rage-Analytics-Backend",
"version": "0.0.1",
"private": true,
"apidoc": {
"description": "API documentation",
"title": "API doc",
"url": "/api"
},
"author": "e-UCM Research Group",
"license": "Apache 2.0",
"scripts": {
"docker-start": "npm run fast-setup && npm run roles-setup && npm run kibana-index-setup && npm run kibana-templates-setup && npm start",
"jscs-fix": "jscs . --fix",
"start": "node ./bin/www",
"lint": "jshint --verbose . && npm run jscs-fix",
"setup": "node ./bin/setup.js",
"elasticsearch-win": "tasklist /nh /fi \"WINDOWTITLE eq Elasticsearch 5.0.0-alpha5\" | find /i \"cmd.exe\" > nul ||(start elasticsearch && ping 127.0.0.1 -n 5 > nul)",
"kibana-win": "tasklist /nh /fi \"WINDOWTITLE eq Kibana Server\" | find /i \"cmd.exe\" > nul ||(start kibana)",
"fast-setup": "NODE_ENV=test npm run setup",
"fast-setup-win": "set NODE_ENV=test&& npm run setup",
"roles-setup": "node ./bin/setup-roles.js",
"kibana-index-setup": "node ./bin/setup-kibana-index.js",
"kibana-templates-setup": "node ./bin/setup-kibana-templates.js",
"test": "npm run lint && NODE_ENV=test ./node_modules/mocha/bin/_mocha -R spec",
"test-win": "npm run lint && set NODE_ENV=test&& mocha -R spec",
"test-travis": "npm run lint && npm run fast-setup && npm run test",
"gen-apidoc": "apidoc -i ./routes -o ./public/apidoc",
"upgrade": "node ./bin/upgrade/upgrade.js",
"recover": "node ./bin/permissions-recover.js"
},
"dependencies": {
"adjective-adjective-animal": "1.3.3",
"adm-zip": "0.4.7",
"async": "^1.3.x",
"body-parser": "^1.13.x",
"co": "4.6.x",
"easy-collections": "e-ucm/easy-collections",
"elasticsearch": "*",
"express": "~4.13.x",
"jade": "*",
"jsonschema": "*",
"kafka-node": "^0.5.9",
"mkdirp": "^0.5.x",
"moment": "2.0.0",
"mongodb": "^2.2.x",
"morgan": "^1.6.x",
"multer": "^1.3.1",
"pify": "*",
"promise-retry": "1.1.x",
"request": "^2.60.x",
"retry": "^0.10.1",
"shelljs": "^0.5.x",
"underscore": "*",
"uuid": "^3.1.x",
"xlsx": "^0.14.1"
},
"devDependencies": {
"apidoc": "0.15.1",
"coveralls": "*",
"grunt": "^0.4.5",
"handlebars": "*",
"istanbul": "*",
"jscs": "3.0.3",
"jshint": "*",
"mocha": "3.5.3",
"promptly": "*",
"q": "*",
"should": "*",
"supertest": "*"
}
}