-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.15 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.15 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
{
"name": "data-service",
"version": "1.0.1",
"description": "Data service for Global Electrification Platform",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/developmentseed/gep-data-service.git"
},
"author": {
"name": "Development Seed",
"url": "https://developmentseed.org"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/developmentseed/gep-data-service/issues"
},
"engines": {
"node": ">=8.12.0"
},
"scripts": {
"gep": "node cli/ ",
"start": "node index.js",
"dev": "NODE_ENV=development node_modules/.bin/nodemon index.js",
"_migrate": "sleep 1; until node_modules/.bin/knex migrate:latest; do echo \"Database is not ready, will retry in 10 seconds...\"; sleep 10; done",
"_seed": "node_modules/.bin/knex seed:run",
"start-dev-db": "docker-compose --project-name gep-dev -f docker-compose-dev.yml up",
"migrate-dev-db": "NODE_ENV=development npm run _migrate",
"seed-dev-db": "NODE_ENV=development npm run _seed",
"prepare-dev-db": "node_modules/.bin/run-s migrate-dev-db seed-dev-db",
"start-test-db": "docker-compose --project-name gep-test -f docker-compose-test.yml up",
"test": "NODE_ENV=test mocha test/test--index.js",
"lint": "node_modules/.bin/eslint app/ cli/ migrations/ seeds/ test/ --ext .js"
},
"dependencies": {
"@hapi/hapi": "^18.4.0",
"bluebird": "^3.5.3",
"boom": "^7.2.2",
"commander": "^2.19.0",
"config": "^2.0.1",
"deep-object-diff": "^1.1.0",
"fast-csv": "^2.4.1",
"fs-extra": "^7.0.1",
"joi": "^14.1.0",
"js-yaml": "^3.13.1",
"knex": "^0.19.5",
"lodash": "^4.17.15",
"npm-run-all": "^4.1.3",
"pako": "^1.0.10",
"pg": "^7.6.0",
"qs": "^6.5.2",
"redis": "^2.8.0",
"request": "^2.88.0",
"table": "^5.2.1"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.8.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.6",
"supertest": "^3.3.0"
}
}