-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
76 lines (76 loc) · 2.41 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
{
"name": "@diva.exchange/diva",
"version": "0.3.7",
"description": "diva - Distributed value exchange upholding security, reliability and privacy",
"keywords": [
"distributed",
"value",
"exchange",
"crypto",
"asset"
],
"author": "Konrad Baechler <konrad@diva.exchange> (https://diva.exchange)",
"license": "AGPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://codeberg.org/diva.exchange/diva.git"
},
"scripts": {
"lint": "prettier -w \"**/*.ts\" ; eslint --fix src --ext .ts",
"css": "node-sass --omit-source-map-url --output-style compressed sass/diva.scss view/static/css/diva.min.css",
"start": "NODE_ENV=production node dist/main.js | pino-pretty -t -i pid,hostname",
"start-dev": "NODE_ENV=development ts-node --files src/main.ts | pino-pretty -t -i pid,hostname",
"test": "TS_NODE_PROJECT=./test/tsconfig.json NODE_ENV=test LOG_LEVEL=trace nyc mocha"
},
"dependencies": {
"better-sqlite3": "^7.6.0",
"big.js": "^6.2.1",
"compression": "^1.7.4",
"dateformat": "^4.6.2",
"express": "~4.18.1",
"express-session": "^1.17.3",
"fs-extra": "^10.1.0",
"http-errors": "~2.0.0",
"pino": "^8.1.0",
"pug": "^3.0.2",
"simple-get": "^4.0.1",
"socks-proxy-agent": "^7.0.0",
"sodium-native": "^3.3.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@testdeck/mocha": "^0.2.0",
"@tsconfig/node14": "^1.0.3",
"@types/better-sqlite3": "^7.5.0",
"@types/big.js": "^6.1.5",
"@types/compression": "^1.7.2",
"@types/dateformat": "^5.0.0",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.5",
"@types/fs-extra": "^9.0.13",
"@types/http-errors": "^1.8.2",
"@types/pino": "^7.0.4",
"@types/sodium-native": "^2.3.5",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"acorn": ">=8.7.1",
"bulma": "^0.9.4",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"minimist": ">=1.2.6",
"mocha": "^10.0.0",
"node-sass": "^7.0.1",
"nyc": "^15.1.0",
"pino-pretty": "^8.1.0",
"prettier": "^2.7.1",
"source-map": "^0.7.4",
"source-map-support": "^0.5.21",
"ts-node": "^10.8.2",
"typescript": "^4.7.4",
"umbrellajs": "^3.3.1"
}
}