-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.84 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
{
"name": "projectpay-server",
"version": "1.0.0",
"description": "Project Pay app backend",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "rimraf dist && tsc",
"start-prod": "cross-env NODE_ENV=production PORT=4000 node ./dist/index.js",
"start": "cross-env NODE_ENV=development PORT=3000 ts-node-dev --respawn --transpile-only ./src/index.ts --files",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"add-build": "git add dist"
},
"dependencies": {
"@types/uuid": "^10.0.0",
"bcrypt": "^5.1.1",
"connect-mongo": "^5.1.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"express-session": "^1.18.1",
"fuse.js": "^7.0.0",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.9.0",
"mongoose": "^8.6.3",
"ms": "^2.1.3",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"uuid": "^10.0.0",
"validator": "^13.12.0"
},
"devDependencies": {
"@eslint/js": "^9.11.0",
"@types/bcrypt": "^5",
"@types/cookie-parser": "^1.4.8",
"@types/cors": "^2.8.17",
"@types/eslint__js": "^8.42.3",
"@types/express": "^4.17.21",
"@types/express-session": "^1.18.0",
"@types/jsonwebtoken": "^9",
"@types/ms": "^0.7.34",
"@types/node": "^22.5.5",
"@types/passport": "^1.0.17",
"@types/passport-google-oauth20": "^2.0.16",
"@types/passport-local": "^1.0.38",
"@types/validator": "^13.12.2",
"cross-env": "^7.0.3",
"eslint": "^9.11.0",
"nodemon": "^3.1.5",
"prettier": "^3.3.3",
"ts-node-dev": "^2.0.0",
"typescript-eslint": "^8.6.0"
},
"packageManager": "[email protected]+sha512.cce0f9de9c5a7c95bef944169cc5dfe8741abfb145078c0d508b868056848a87c81e626246cb60967cbd7fd29a6c062ef73ff840d96b3c86c40ac92cf4a813ee"
}