This repository has been archived by the owner on Jul 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
129 lines (129 loc) · 3.93 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "stacks-explorer-api",
"version": "1.0.0",
"description": "An API for explorer-related APIs.",
"main": "server.js",
"license": "MIT",
"prettier": "@blockstack/prettier-config",
"scripts": {
"prod": "NODE_ENV=production ts-node server.ts",
"dev": "NODE_ENV=development ts-node server.ts",
"nodemon": "NODE_ENV=development nodemon -e ts,js -x 'ts-node server.ts' --ignore test/",
"deref-schemas": "gulp",
"test": "NODE_ENV=test jest --verbose=false --collectCoverage=true",
"test-watch": "NODE_ENV=test jest --verbose=false --watch",
"seed": "ts-node scripts/seed-db.ts",
"typecheck": "tsc --noEmit",
"lint": "yarn lint:eslint && yarn lint:yaml",
"lint:eslint": "eslint --ext .ts,.js . -f codeframe",
"lint:fix": "eslint --ext .ts,.js . -f codeframe --fix",
"lint:yaml": "yamllint docs/**/*.{yml,yaml}",
"lint:json": "jsonlint-cli docs/**/*.json",
"generate:types": "gulp --silent && ./scripts/generate-types.ts",
"validate:schemas": "gulp --silent && ./scripts/validate-schemas.ts",
"mock": "prism mock --cors docs/api-spec.yml"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github",
"@semantic-release/changelog",
"@semantic-release/git",
[
"semantic-release-slack-bot",
{
"notifyOnSuccess": true,
"notifyOnFail": true,
"markdownReleaseNotes": true
}
]
]
},
"devDependencies": {
"@blockstack/prettier-config": "^0.0.3",
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@stoplight/prism-cli": "^3.3.0",
"@types/accounting": "^0.4.1",
"@types/bluebird": "^3.5.29",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.2",
"@types/glob": "^7.1.1",
"@types/jest": "^25.1.1",
"@types/lodash": "^4.14.123",
"@types/node": "^12.12.11",
"@types/redis": "^2.8.14",
"@types/request-promise-native": "^1.0.17",
"@typescript-eslint/eslint-plugin": "^2.8.1-alpha.10",
"@typescript-eslint/parser": "^2.8.0",
"ajv": "^6.12.0",
"chalk": "^3.0.0",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.7.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^23.0.4",
"eslint-plugin-prettier": "^3.1.1",
"glob": "^7.1.6",
"gulp": "^4.0.2",
"gulp-jsonschema-deref": "^0.0.3",
"gulp-prettier": "^2.3.0",
"husky": "^4.2.5",
"jest": "^25.1.0",
"jsonlint-cli": "^1.0.1",
"prettier": "^1.18.2",
"ts-jest": "^25.2.0",
"yaml-lint": "^1.2.4"
},
"dependencies": {
"@promster/express": "^3.4.1",
"@promster/server": "^3.4.1",
"@sentry/node": "^4.3.0",
"@types/fs-extra": "^8.0.1",
"@types/mongodb": "^3.3.14",
"@types/pg": "^7.4.14",
"@types/progress": "^2.0.3",
"@types/uuid": "^3.4.7",
"accounting": "^0.4.1",
"bignumber.js": "^9.0.0",
"bitcoin-core": "^2.0.0",
"bitcoinjs-lib": "^5.1.7",
"blockstack": "^19.3.0",
"bluebird": "^3.7.2",
"bn.js": "^5.0.0",
"c32check": "^1.0.1",
"cors": "^2.8.4",
"dotenv": "^8.2.0",
"express": "^4.16.4",
"express-winston": "^4.0.2",
"fs-extra": "^8.1.0",
"json-schema-to-typescript": "^8.2.0",
"lodash": "^4.17.13",
"moment": "^2.22.2",
"mongodb": "^3.4.1",
"ora": "^4.0.2",
"pg": "^7.11.0",
"prom-client": "^11.5.3",
"redis": "^2.8.0",
"request": "^2.88.0",
"request-promise-native": "^1.0.8",
"split-on-first": "^1.1.0",
"strict-event-emitter-types": "^2.0.0",
"ts-node": "^8.6.2",
"typescript": "^3.7.5",
"uuid": "^3.4.0",
"winston": "^3.2.1"
}
}