forked from jaspermayone-archive/heptagram-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.03 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
{
"name": "api",
"version": "6.0.0",
"packageManager": "yarn@3.2.3",
"author": "Jasper Mayone <jasper@jaspermayone.com>",
"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": {
"axios": "^0.27.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.0",
"chalk": "^5.0.1",
"colors": "^1.4.0",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.18.1",
"express-ping": "^1.4.0",
"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.2.10",
"swagger-jsdoc": "^6.2.1",
"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": "16.11.59",
"@types/swagger-ui-express": "4.1.3",
"@typescript-eslint/eslint-plugin": "5.38.0",
"@typescript-eslint/parser": "5.38.0",
"all-contributors-cli": "6.20.4",
"eslint": "8.23.1",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsdoc": "39.3.6",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"nodemon": "2.0.20",
"prettier": "2.7.1"
},
"lint-staged": {
"**/*": "prettier --write --color --ignore-unknown"
}
}