This repository has been archived by the owner on Nov 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
80 lines (80 loc) · 2.27 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
{
"name": "api",
"version": "9.0.0",
"packageManager": "[email protected]",
"author": "Jasper Mayone <[email protected]>",
"license": "EPL-2.0",
"keywords": [],
"main": "src/index.ts",
"scripts": {
"start": "ts-node src/index.ts",
"dev": "nodemon --watch './**/*.ts' --exec 'ts-node' src/index.ts",
"test": "jest",
"lint": "prettier --write --color './**/*.ts'",
"prepare": "husky install",
"compile": "tsc",
"pretest": "yarn run compile",
"posttest": "yarn run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Heptagram-Bot-Project/api.git"
},
"bugs": {
"url": "https://github.com/Heptagram-Bot-Project/api/issues"
},
"homepage": "https://github.com/Heptagram-Bot-Project/api#readme",
"dependencies": {
"@types/mongoose": "^5.11.97",
"@types/swagger-jsdoc": "^6.0.1",
"@types/uuid": "^8.3.4",
"axios": "^1.1.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.0",
"bun-types": "^0.2.0",
"chalk": "^5.0.1",
"colors": "^1.4.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-ping": "^1.4.0",
"express-public-ip": "^1.0.1",
"express-rate-limit": "^6.6.0",
"express-validator": "^6.14.0",
"helmet": "^6.0.0",
"ipinfo-express": "^1.1.0",
"jsonwebtoken": "^8.5.1",
"mathjs": "^11.0.0",
"mongoose": "^6.7.2",
"openapi-types": "^12.0.2",
"redis": "^4.4.0",
"source-map-support": "^0.5.21",
"swagger-jsdoc": "^6.2.5",
"swagger-ui-express": "^4.3.0",
"ts-node": "^10.7.0",
"typescript": "^4.8.2",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/body-parser": "1.19.2",
"@types/compression": "1.7.2",
"@types/cors": "2.8.12",
"@types/node": "18.11.9",
"@types/swagger-ui-express": "4.1.3",
"@typescript-eslint/eslint-plugin": "5.43.0",
"@typescript-eslint/parser": "5.43.0",
"all-contributors-cli": "6.24.0",
"eslint": "8.27.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsdoc": "39.6.2",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.2",
"lint-staged": "13.0.3",
"nodemon": "2.0.20",
"prettier": "2.7.1"
},
"lint-staged": {
"**/*": "prettier --write --color --ignore-unknown"
}
}