-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.05 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.05 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "tms-api",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/CodeCommunityHub/tms-api.git",
"author": "Anuradha Fernando <anufdo@gmail.com>",
"license": "MIT",
"scripts": {
"start-node": "node build/index.js",
"dev": "ts-node-dev src/index.ts",
"test": "yarn jest test --silent",
"test:ci": "yarn jest test --silent --maxWorkers=2 --forceExit",
"build": "tsc -p .",
"tsc": "tsc -p . --pretty --skipLibCheck --noEmit",
"bootstrap": "git pull origin main && yarn install",
"lint": "eslint --fix ./src/**/*.ts",
"format": "yarn prettier -w ./src/** --loglevel silent",
"prepare": "husky"
},
"husky": {
"hooks": {
"pre-push": "yarn tsc && yarn lint && yarn test",
"pre-commit": "pretty-quick --staged"
}
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/body-parser": "^1.19.2",
"@types/express": "^4.17.15",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.7",
"@types/lodash": "^4.17.7",
"@types/node": "^22.7.6",
"@types/sequelize": "^4.28.14",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"eslint": "^8.31.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.8.3",
"husky": "^9.1.6",
"jest": "^29.3.1",
"prettier": "^3.3.3",
"pretty-quick": "^4.0.0",
"ts-jest": "^29.2.5",
"ts-node-dev": "^2.0.0",
"typescript": "^5.6.2"
},
"dependencies": {
"@types/validator": "^13.12.2",
"bcrypt": "^5.1.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.3",
"chalk": "^5.2.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.21.0",
"helmet": "^8.0.0",
"http-status-codes": "^2.0.0",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"morgan": "^1.10.0",
"mysql2": "^3.11.3",
"reflect-metadata": "^0.2.2",
"sequelize": "^6.37.3",
"sequelize-cli": "^6.5.2",
"sequelize-typescript": "^2.1.6",
"socket.io": "^4.8.0",
"sqlite3": "^5.1.7",
"uuid": "^10.0.0"
}
}