-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
70 lines (70 loc) · 1.89 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
{
"name": "umbrel-middleware",
"version": "0.4.0",
"description": "Middleware for Umbrel Node",
"author": "Deverick",
"type": "module",
"scripts": {
"lint": "eslint",
"build": "tsc",
"start": "node ./bin/www",
"start:server:dev": "NODE_ENV=development node --watch ./bin/www",
"start:ui:dev": "cd ui && npm run serve:dev",
"start:all:dev": "npm-run-all --parallel start:server:dev start:ui:dev",
"install:ui": "cd ui && npm install --fetch-timeout 1000000",
"build:ui": "cd ui && npm run build",
"serve:ui": "cd ui && npm run serve",
"test": "mocha --file test.setup 'test/**/*.js'",
"coverage": "nyc --all mocha --file test.setup 'test/**/*.js'",
"postcoverage": "codecov"
},
"dependencies": {
"axios": "0.21.2",
"body-parser": "^1.18.2",
"bs58": "^5.0.0",
"camelize-keys": "^1.0.0",
"continuation-local-storage": "^3.2.1",
"cors": "^2.8.5",
"debug": "^4.3.4",
"dotenv": "^8.2.0",
"express": "^4.16.3",
"helmet": "^7.1.0",
"js-sha3": "^0.9.2",
"module-alias": "^2.1.0",
"monero-javascript": "^0.7.12",
"monero-ts": "^0.9.7",
"morgan": "^1.9.0",
"typescript": "^5.4.3",
"uuid": "^3.3.2",
"winston": "^3.0.0-rc5",
"winston-daily-rotate-file": "^3.1.3"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.18.6",
"babel-eslint": "^8.2.6",
"chai": "^4.4.1",
"chai-http": "^4.2.0",
"codecov": "^3.7.1",
"eslint": "^8.51.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-vue": "^9.17.0",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"nyc": "15.1.0",
"proxyquire": "^2.0.1",
"sinon": "^6.1.4"
},
"nyc": {
"exclude": [
"test",
"test.setup.js"
],
"sourceMap": false,
"reporter": [
"lcov",
"text-summary"
],
"cache": "false"
}
}