-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3.33 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "communa",
"version": "0.0.0",
"description": "Time tracking and Decentralized Freelance Identity",
"private": true,
"author": "ivan.proskuryakov",
"license": "MIT",
"engines": {
"node": ">=18"
},
"scripts": {
"pm2": "NODE_ENV=production pm2 start build/server.js --watch",
"prod": "NODE_ENV=production node build/server.js",
"dev": "HTTPS=true NODE_ENV=development ts-node-dev --inspect --respawn src/server.ts",
"test": "NODE_ENV=test nyc ./node_modules/.bin/mocha --require ts-node/register ./src/test/**/**/**/**/*.test.ts",
"build": "rimraf build && tsc -p tsconfig.json",
"prettier:fix": "prettier --write \"**/*.{ts,js,md}\"",
"prettier:check": "prettier --check \"**/*.{ts,js,md}\"",
"typeorm:cli": "ts-node ./node_modules/typeorm/cli -f src/ormconfig.ts",
"lint:fix": "eslint --max-warnings 0 --fix --ext .ts src/",
"lint:check": "eslint --max-warnings 0 --ext .ts src/"
},
"keywords": [
"node",
"typeorm",
"api",
"crud"
],
"dependencies": {
"@mozilla/readability": "^0.4.2",
"@sentry/node": "^6.12.0",
"@sentry/tracing": "^6.12.0",
"@ton/core": "^0.56.3",
"@ton/crypto": "^3.2.0",
"@ton/ton": "^13.11.1",
"@types/bcrypt": "^5.0.0",
"@types/chai-uuid": "^1.0.2",
"@types/jsdom": "^20.0.0",
"@types/jsonwebtoken": "^8.5.9",
"@types/moment": "^2.13.0",
"@types/node": "^18.11.18",
"@types/qrcode": "^1.5.5",
"@types/sharp": "^0.31.1",
"@types/xml2js": "^0.4.11",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"@walletconnect/auth-client": "^2.1.2",
"axios": "^0.25.0",
"bcrypt": "^5.1.0",
"chai-uuid": "^1.0.6",
"cheerio": "^1.0.0-rc.12",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"class-validator-jsonschema": "^4",
"cors": "^2.8.5",
"ejs": "^3.1.6",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"express": "^4.17.1",
"express-query-boolean": "^2.0.0",
"form-data": "^4.0.0",
"inversify": "^5.1.1",
"inversify-inject-decorators": "^3.1.0",
"jose": "^5.3.0",
"jsdom": "^20.0.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"moment": "^2.29.2",
"moment-timezone": "^0.5.35",
"nock": "^13.1.3",
"node-mocks-http": "^1.10.1",
"nyc": "^15.1.0",
"pg": "^8.7.1",
"prettier": "^2.4.1",
"redis": "^4.6.4",
"reflect-metadata": "^0.1.13",
"request": "^2.88.2",
"rimraf": "^3.0.2",
"routing-controllers": "^0.10.1",
"routing-controllers-openapi": "^3.1.0",
"sharp": "^0.31.3",
"swagger-ui-express": "^4.1.6",
"ts-node": "^10.8.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typeorm": "^0.2.41",
"typescript": "^4.4.3",
"web3": "^4.0.1",
"winston": "^3.8.2",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@testdeck/mocha": "^0.2.0",
"@types/chai": "^4.2.21",
"@types/ejs": "^3.1.0",
"@types/express": "^4.17.13",
"@types/faker": "^5.5.8",
"@types/lodash": "^4.14.173",
"@types/mocha": "^9.1.0",
"@types/moment": "^2.13.0",
"@types/nock": "^11.1.0",
"@types/validator": "^13.7.1",
"chai": "^4.3.4",
"faker": "^5.5.3",
"mocha": "^9.2.0",
"ts-node-dev": "^2.0.0"
},
"repository": "[email protected]:communa/backend.git"
}