This repository has been archived by the owner on Apr 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
66 lines (66 loc) · 2.28 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
{
"name": "bat-ratios",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"precommit": "yarn test",
"lint": "standard",
"lint-fix": "yarn run lint -- --fix",
"test": "yarn run lint && yarn run test-versions",
"test-versions": "yarn run test-v1",
"test-v1": "ava --timeout=1000s -v ./test/v1/index.test.js",
"start": "yarn run serve",
"serve": "node --max-old-space-size=8192 ./index.js",
"history": "node ./history.js",
"security": "yarn audit && yarn run lint",
"docker-build": "docker-compose build",
"docker-test": "docker-compose run --rm -v $(pwd)/test:/usr/src/app/test ratios-web yarn test",
"docker-up": "docker-compose -f docker-compose.yml up ratios-web",
"docker-up-detached": "docker-compose -f docker-compose.yml up -d ratios-web",
"docker-up-dbs": "docker-compose -f docker-compose.yml up -d ratios-postgres ratios-redis",
"docker-fill-dbs": "docker-compose -f docker-compose.yml run --rm -w /usr/src/app ratios-history",
"docker-migrate-dbs": "docker-compose -f docker-compose.yml run --rm -w /usr/src/app ratios-migrate",
"docker-migrate-dbs-down": "docker-compose -f docker-compose.yml run --rm -w /usr/src/app ratios-web yarn run migrate-down",
"migrate-up": "./bin/up.sh",
"migrate-down": "./bin/down.sh",
"postinstall": "rm -f node_modules/$ && ln -s .. $ && mv $ ./node_modules"
},
"author": {
"name": "Michael McLaughlin",
"email": "mmclaughlin@brave.com"
},
"repository": "git@github.com:brave-intl/bat-ratios.git",
"license": "ISC",
"dependencies": {
"@brave-intl/currency": "1.6.8",
"@sentry/node": "^6.2.5",
"ava": "^4.0.0-rc.1",
"debug": "^4.3.1",
"dotenv": "^6.2.0",
"express": "^4.17.3",
"express-boom": "^2.0.0",
"express-joi-validation": "^0.3.0",
"express-prom-bundle": "^5.1.5",
"express-request-csv": "^1.0.1",
"joi": "^13.7.0",
"joi-to-json-schema": "^3.5.0",
"json2csv": "^4.5.4",
"lodash": "^4.17.20",
"pg": "^8.5.1",
"prom-client": "^11.5.3",
"redis": "^3.1.2",
"uuid": "^3.4.0"
},
"devDependencies": {
"husky": "^0.14.3",
"standard": "^16.0.4",
"supertest": "^3.4.1",
"swagger-ui-express": "^4.1.5"
},
"standard": {
"ignore": [
"config.js"
]
}
}