This repository has been archived by the owner on Nov 17, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 2 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
{
"name": "skope-development",
"version": "1.0.0",
"description": "The purpose of this repo is to have a single repo to checkout the entire platform for development, no matter which sub-system is being worked on.",
"main": "index.js",
"scripts": {
"start": "bash run-meteor-app.sh",
"es:data:load-from-staging:base": "elasticdump --input=https://staging.openskope.org/es --input-index=datasets --output=http://localhost:9200 --output-index=datasets",
"es:data:load-from-staging:mapping": "npm run es:data:load-from-staging:base -- --type=mapping",
"es:data:load-from-staging:data": "npm run es:data:load-from-staging:base -- --type=data",
"es:data:reload-from-staging": "npm run es:data:drop-indices && npm run es:data:load-from-staging:mapping && es:data:load-from-staging:data",
"es:data:load-mock-data": "ts-node ./scripts/elasticsearch/loadIndices.ts",
"es:data:list-indices": "ts-node ./scripts/elasticsearch/listIndices.ts",
"es:data:drop-indices": "ts-node ./scripts/elasticsearch/deleteIndices.ts",
"es:data:generate-mock-data": "ts-node ./scripts/elasticsearch/generateMockData.ts",
"es:start": "docker-compose up -d elasticsearch",
"es:stop": "docker-compose stop elasticsearch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openskope/skope-development.git"
},
"author": "Xingchen Hong",
"license": "ISC",
"bugs": {
"url": "https://github.com/openskope/skope-development/issues"
},
"homepage": "https://github.com/openskope/skope-development#readme",
"devDependencies": {
"@types/elasticsearch": "^5.0.19",
"@types/faker": "^4.1.2",
"@types/fs-extra": "^5.0.0",
"@types/moment": "^2.13.0",
"@types/node": "^9.4.0",
"elasticdump": "^3.3.14",
"elasticsearch": "^14.0.0",
"faker": "^4.1.0",
"fs-extra": "^5.0.0",
"glob": "^7.1.2",
"moment": "^2.20.1",
"ts-node": "^4.1.0",
"typescript": "^2.6.2",
"uuid": "^3.2.1"
}
}