-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.44 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
{
"name": "btc-krr-app",
"version": "1.0.0",
"description": "An API for custom combined requests to Bitcoin RPC",
"main": "dist/app.js",
"scripts": {
"start": "npm run compile && node dist/app.js",
"dev": "npm run compile && concurrently --kill-others \"npm run compile:watch\" \"npm run nodemon:watch\"",
"compile": "npm run lint && tsc",
"compile:watch": "tsc -w",
"nodemon:watch": "nodemon --watch dist -e js dist/app.js",
"lint": "eslint --ext .js,.ts src/",
"prettier": "prettier --write src/",
"prettier:check": "prettier --check src/",
"test": "npm run prettier:check && npm run compile && jest --forceExit",
"test:watch": "npm run compile && jest --watch"
},
"author": "krr prr",
"license": "ISC",
"devDependencies": {
"@types/dotenv": "8.2.0",
"@types/express": "4.17.7",
"@types/jest": "26.0.9",
"@types/node": "14.0.27",
"@typescript-eslint/eslint-plugin": "3.8.0",
"@typescript-eslint/parser": "3.8.0",
"concurrently": "5.3.0",
"eslint": "7.6.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-jest": "23.20.0",
"eslint-plugin-prettier": "3.1.4",
"jest": "26.2.2",
"nodemon": "2.0.4",
"prettier": "2.0.5",
"ts-jest": "26.1.4",
"typescript": "3.9.7"
},
"dependencies": {
"axios": "0.19.2",
"dotenv": "8.2.0",
"express": "4.17.1",
"lodash": "^4.17.19",
"rxjs": "6.6.2"
},
"engines": {
"node": ">=12.18.1"
}
}