-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.45 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.45 KB
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
{
"name": "coffee-paste-backend",
"version": "1.0.0",
"description": "",
"main": "server.ts",
"scripts": {
"build": "tsoa spec-and-routes && tsc",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --max-warnings=0",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --max-warnings=0 --fix",
"start": "node dist/server.js",
"dev": "npm run build && npm run start",
"typeorm": "ts-node ./node_modules/typeorm/cli.js",
"migrate": "npm run typeorm -- migration:run",
"migrate:revert": "npm run typeorm -- migration:revert",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coffee-paste/coffee-paste-backend.git"
},
"author": "Haim Kastner",
"license": "ISC",
"bugs": {
"url": "https://github.com/coffee-paste/coffee-paste-backend/issues"
},
"homepage": "https://github.com/coffee-paste/coffee-paste-backend#readme",
"dependencies": {
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"crypto-js": "^4.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-rate-limit": "^5.2.6",
"generic-json-sanitizer": "^1.1.0",
"helmet": "^4.4.1",
"joi": "^17.4.0",
"jsonwebtoken": "^8.5.1",
"lodash.debounce": "^4.0.8",
"log4js": "^6.3.0",
"mongodb": "^3.6.9",
"ms": "^2.1.3",
"node-cache": "^5.1.2",
"node-fetch": "^2.6.1",
"reflect-metadata": "^0.1.13",
"swagger-ui-express": "^4.1.6",
"tsoa": "^3.6.1",
"typeorm": "^0.2.34",
"unique-names-generator": "^4.5.0",
"unitsnet-js": "^1.0.20",
"uuid": "^8.3.2",
"ws": "^8.3.0"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.10",
"@types/crypto-js": "^4.0.1",
"@types/express": "^4.17.11",
"@types/express-rate-limit": "^5.1.1",
"@types/jsonwebtoken": "^8.5.1",
"@types/lodash.debounce": "^4.0.6",
"@types/mongodb": "^3.6.12",
"@types/ms": "^0.7.31",
"@types/node": "^14.14.37",
"@types/node-fetch": "^2.5.10",
"@types/swagger-ui-express": "^4.1.2",
"@types/uuid": "^8.3.0",
"@types/ws": "^8.2.1",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"eslint": "^7.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.3.2",
"typescript": "^4.2.4"
}
}