-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.91 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
{
"name": "express-typescript-setup",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"author": {
"name": "Abdi Setiawan",
"url": "https://github.com/abdisetiakawan",
"email": "[email protected]"
},
"scripts": {
"build": "tsc && copyfiles -u 1 src/docs/swagger.yaml dist/ && copyfiles -u 1 src/data/PsikiaterDummy.json dist/",
"start": "node dist/index.js",
"lint": "eslint src/**/*.ts",
"format": "npx prettier . --write",
"dev": "npx nodemon",
"start:prod": "npx ts-node -r tsconfig-paths/register src/index.ts",
"deploy": "gcloud app deploy"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.13.0",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.0",
"@types/swagger-ui-express": "^4.1.7",
"@types/yamljs": "^0.2.34",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"copyfiles": "^2.4.1",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.6",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"nodemon": "^3.1.7",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"yarn lint"
]
},
"dependencies": {
"@firebase/firestore": "^4.7.4",
"@google-cloud/secret-manager": "^5.6.0",
"@types/multer": "^1.4.12",
"axios": "^1.7.7",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"firebase": "^11.0.1",
"firebase-admin": "^12.7.0",
"form-data": "^4.0.1",
"joi": "^17.13.3",
"multer": "^1.4.5-lts.1",
"swagger-ui-express": "^5.0.1",
"tsconfig-paths": "^4.2.0",
"winston": "^3.16.0",
"winston-daily-rotate-file": "^5.0.0",
"yamljs": "^0.3.0"
}
}