-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.39 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.39 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
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "app.ts",
"scripts": {
"start": "ts-node src/app.ts",
"dev": "nodemon",
"build": "tsc --project ./",
"lint": "eslint src/**/*.ts",
"format": "eslint src/**/*.ts --fix",
"pretty": "prettier --write \"src/**/*.ts\""
},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"pre-push": "yarn test"
}
},
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.18.1",
"express-pino-logger": "^7.0.0",
"jsonwebtoken": "^8.5.1",
"pg": "^8.8.0",
"reflect-metadata": "^0.1.13",
"swagger-jsdoc": "^6.2.5",
"swagger-ui-express": "^4.5.0",
"typeorm": "^0.3.8"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-pino-logger": "^4.0.3",
"@types/jsonwebtoken": "^8.5.8",
"@types/node": "^17.0.21",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"eslint": "^8.10.0",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
}
}