This repository has been archived by the owner on Oct 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.53 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
{
"name": "itsphishy-api",
"version": "4.0.0",
"description": "",
"exports": "./src/index.ts",
"author": "Jasper Mayone <jasper.mayone@singlefeather.com>",
"license": "EPL-2.0",
"scripts": {
"start": "ts-node src/index.ts",
"dev": "nodemon --quiet --watch './**/*.ts' --exec 'ts-node' src/index.ts",
"test": "jest",
"lint": "prettier-eslint --write './**/*.ts'",
"prepare": "husky install",
"compile": "tsc",
"pretest": "yarn run compile",
"posttest": "yarn run lint"
},
"dependencies": {
"axios": "^1.4.0",
"colors": "^1.4.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-jsdoc-swagger": "^1.8.0",
"helmet": "^7.0.0",
"jsonwebtoken": "^9.0.1",
"moment": "^2.29.4",
"pg": "^8.11.2",
"typescript": "^5.1.6",
"uuid": "^9.0.0",
"validator": "^13.11.0"
},
"devDependencies": {
"@faker-js/faker": "^8.0.2",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^20.4.10",
"@types/pg": "^8.10.2",
"@types/uuid": "^9.0.2",
"@types/validator": "^13.11.1",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^40.0.1",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"nodemon": "^3.0.1",
"prettier": "^2.8.4",
"prettier-eslint": "^15.0.1",
"prettier-eslint-cli": "^7.1.0",
"ts-node": "^10.9.1"
},
"lint-staged": {
"**/*.*": "prettier-eslint --write './**/*.ts'"
}
}