-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 2.52 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
{
"name": "casa-net",
"version": "2.1.0",
"author": {
"name": "Haim Kastner",
"email": "hello@haim-kastner.com",
"url": "https://github.com/casanet/remote-server"
},
"description": "https://github.com/casanet/remote-server",
"main": "dist/index.js",
"scripts": {
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"lint:fix": "tslint --fix -p tsconfig.json",
"typeorm": "ts-node ./node_modules/typeorm/cli.js",
"migrate": "npm run typeorm -- migration:run",
"migrate:revert": "npm run typeorm -- migration:revert",
"start": "npm run build:dev && node ./dist/index.js",
"build": "npm run format && npm run lint && tsoa swagger && tsoa routes && tsc",
"build:dev": "tsoa routes && tsoa swagger && tsc"
},
"license": "GNU",
"dependencies": {
"axios": "^0.24.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"crypto-js": "^3.1.9-1",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"express-force-ssl": "^0.3.2",
"express-rate-limit": "^5.0.0",
"express-sse": "^0.5.1",
"express-ws": "^4.0.0",
"fs": "0.0.1-security",
"fs-extra": "^7.0.1",
"generic-json-sanitizer": "^1.1.0",
"helmet": "^3.21.1",
"http": "0.0.0",
"https": "^1.0.0",
"joi": "^14.3.0",
"jsonwebtoken": "^8.5.1",
"log4js": "^3.0.6",
"moment": "^2.23.0",
"ms": "^2.1.2",
"node-cache": "^4.2.0",
"nodemailer": "^6.6.0",
"path": "^0.12.7",
"pg": "^8.7.1",
"randomstring": "^1.1.5",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.5.2",
"swagger-ui-express": "^4.3.0",
"tsoa": "2.4.3",
"typeorm": "^0.2.37",
"url": "^0.11.0",
"ws": "^6.2.2"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/body-parser": "^1.17.0",
"@types/cors": "^2.8.5",
"@types/crypto-js": "^3.1.43",
"@types/express": "^4.17.0",
"@types/express-ws": "^3.0.0",
"@types/fs-extra": "^5.1.0",
"@types/joi": "^14.3.3",
"@types/jsonwebtoken": "^8.3.2",
"@types/moment": "^2.13.0",
"@types/ms": "^0.7.31",
"@types/node": "^10.14.13",
"@types/nodemailer": "^6.4.1",
"@types/randomstring": "^1.1.6",
"@types/swagger-ui-express": "^4.1.3",
"@types/ws": "^6.0.1",
"copyfiles": "^2.1.1",
"cross-env": "^5.2.0",
"del-cli": "^1.1.0",
"prettier": "^1.19.1",
"ts-node": "^7.0.1",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.5.3"
}
}