-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.38 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
{
"name": "@roadmanjs/monerox",
"version": "0.0.5",
"description": "MoneroX is a simple API to generate Monero addresses and integrated Monero payments",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"dev": "nodemon src/server.ts",
"start": "npm run serve",
"build": "npm run build-ts",
"serve": "node build/server.js",
"test": "jest --coverage=false --verbose",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run watch-node\"",
"watch-node": "nodemon build/index.js",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"lint": "eslint src/*.ts",
"lint-fix": "yarn lint --fix",
"debug": "npm run build && npm run watch-debug",
"serve-debug": "nodemon --inspect build/index.js",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve-debug\"",
"typecheck": "tsc --noEmit",
"run-prettier": "prettier src/*.ts",
"validate-prettiness": "yarn run-prettier -c",
"make-prettier": "yarn run-prettier --write",
"docker": "act --job api --secret-file .env --container-architecture linux/amd64"
},
"author": "",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.16.2",
"http-errors": "^1.7.1",
"lodash": "^4.17.21",
"monero-ts": "^0.9.7",
"morgan": "^1.9.1",
"pug": "^3.0.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "4.17.20",
"@types/http-errors": "1.8.2",
"@types/jest": "26.0.24",
"@types/lodash": "^4.14.202",
"@types/morgan": "1.9.7",
"@types/node": "14.18.63",
"@types/supertest": "2.0.15",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"concurrently": "6.5.1",
"eslint": "7.32.0",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-import": "2.29.0",
"jest": "26.6.3",
"nodemon": "^3.0.2",
"prettier": "2.8.8",
"supertest": "6.3.3",
"ts-jest": "26.5.6",
"typescript": "4.9.5"
}
}