-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.34 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
{
"name": "@cheqd/market-monitoring",
"version": "1.1.5",
"description": "cheqd Market Monitoring API",
"source": "src/index.js",
"main": "src/index.js",
"license": "Apache-2.0",
"author": "Cheqd Foundation Limited (https://github.com/cheqd)",
"repository": "https://github.com/cheqd/market-monitoring.git",
"scripts": {
"start": "node src/index.js",
"format": "prettier --write '*.{json,js}' 'src/**/*.{js,ts}' 'test/**/*.{js,ts}'",
"lint": "eslint --max-warnings=0 src && prettier --check '*.{json,js}' 'src/**/*.{js,ts}' 'test/**/*.{js,ts}'"
},
"eslintConfig": {
"root": true,
"extends": [
"typescript",
"prettier"
]
},
"dependencies": {
"coingecko-api": "^1.0.10",
"express": "^4.18.2"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^10.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.0.4",
"@semantic-release/npm": "^10.0.4",
"@semantic-release/release-notes-generator": "^11.0.4",
"conventional-changelog-conventionalcommits": "^6.1.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-typescript": "^3.0.0",
"semantic-release": "^21.0.7"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}