-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.81 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
{
"name": "pravaler_challenge",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test jest --runInBand --silent",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "npx eslint . --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"start": "ts-node src/server.ts",
"dev": "nodemon --exec ts-node src/server.ts",
"seed": "ts-node src/seeds/runSeed.ts",
"typeorm": "typeorm-ts-node-commonjs",
"migration:run": "npm run typeorm -- migration:run -d src/config/database.ts",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@types/node": "^22.7.4",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"bcrypt": "^5.1.1",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"jsonwebtoken": "^9.0.2",
"nodemon": "^3.1.7",
"pg": "^8.13.0",
"reflect-metadata": "^0.2.2",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"ts-node": "^10.9.2",
"typeorm": "^0.3.20",
"typescript": "~5.5.0"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@types/bcrypt": "^5.0.2",
"@types/dotenv": "^6.1.1",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.13",
"@types/jsonwebtoken": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"sqlite3": "^5.1.7",
"typeorm-extension": "^3.6.1"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"prettier --write"
]
}
}