This repository has been archived by the owner on Feb 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.69 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
{
"name": "thequoter",
"version": "0.2.1",
"description": "Backend for the Quoter project",
"main": "./dist/server.js",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"prepare": "husky install",
"dev": "nodemon -w ./src ./src/server.ts",
"build": "tsc -p ./tsconfig.build.json",
"start": "node ./dist/server.js",
"format": "prettier --write . --ignore-unknown",
"lint": "eslint --ext .ts .",
"docker": "npm run build && docker build . -f Dockerfile -t maximmaxims/thequoter:develop",
"start:docker": "docker run -p 3000:3000 --env-file '.env' maximmaxims/thequoter:develop",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MaximMaximS/TheQuoter.git"
},
"author": "MaximMaximS",
"license": "MIT-0",
"bugs": {
"url": "https://github.com/MaximMaximS/TheQuoter/issues"
},
"homepage": "https://github.com/MaximMaximS/TheQuoter#readme",
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^3.3.0",
"@tsconfig/node18-strictest": "^1.0.0",
"@tsconfig/node18-strictest-esm": "^1.0.1",
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/express-slow-down": "^1.3.2",
"@types/jest": "^29.1.2",
"@types/jsonwebtoken": "^8.5.9",
"@types/mongoose-unique-validator": "^1.0.6",
"@types/node": "^18.8.3",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-only-error": "^1.0.2",
"eslint-plugin-sonarjs": "^0.15.0",
"eslint-plugin-unicorn": "^44.0.2",
"husky": "^8.0.1",
"jest": "^29.1.2",
"lint-staged": "^13.0.3",
"mongodb-memory-server": "^8.9.3",
"nodemon": "^2.0.20",
"prettier": "2.7.1",
"supertest": "^6.3.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"lint-staged": {
"*.ts": [
"eslint --fix"
],
"**/*": [
"prettier --write --ignore-unknown"
]
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.1",
"express-rate-limit": "^6.6.0",
"express-slow-down": "^1.5.0",
"helmet": "^6.0.0",
"jsonwebtoken": "^8.5.1",
"middleware-async": "^1.3.5",
"mongoose": "^6.6.5",
"mongoose-extra-validators": "^1.0.0-beta.5",
"mongoose-id-validator2": "^0.0.2",
"mongoose-unique-validator": "^3.1.0"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
}
}