-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
85 lines (85 loc) · 2.3 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
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "user",
"version": "1.0.1",
"description": "user service for ansopedia",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "nodemon",
"generate-keys": "ts-node scripts/generate-keys.ts",
"lint:fix": "eslint --fix .",
"lint": "eslint src .",
"prepare": "husky",
"pretest": "pnpm build",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write .",
"prod": "set NODE_ENV=production&& pnpm build && pnpm start",
"start": "ts-node -r tsconfig-paths/register src/index.ts",
"test:coverage": "jest --runInBand --detectOpenHandles --forceExit --coverage",
"test": "jest --runInBand --detectOpenHandles --forceExit"
},
"keywords": [
"user",
"ansopedia"
],
"author": "ansopedia",
"license": "ISC",
"dependencies": {
"axios": "^1.7.9",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"date-fns": "^4.1.0",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-rate-limit": "^7.5.0",
"helmet": "^8.0.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.9.1",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"pino": "^9.5.0",
"pino-http": "^10.3.0",
"socket.io": "^4.8.1",
"zod": "^3.24.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@trivago/prettier-plugin-sort-imports": "^5.2.0",
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.7",
"@types/passport": "^1.0.17",
"@types/passport-google-oauth20": "^2.0.16",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"eslint": "^9.17.0",
"eslint-plugin-check-file": "^2.8.0",
"globals": "^15.13.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.2.11",
"nodemon": "^3.1.9",
"prettier": "^3.4.2",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,jsx,tsx,md}": [
"prettier --write .",
"eslint --fix ."
]
}
}