-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.4 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.4 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
{
"name": "ts-express-api-starter",
"version": "1.0.0",
"description": "a starter template for express api server with typescript",
"main": "app.js",
"scripts": {
"dev": "tsx watch src/app.ts",
"seed": "tsx src/prisma/seeders/seed.ts",
"typecheck": "tsc --noEmit",
"build": "tsc",
"start": "node dist/app.js",
"test": "jest",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix"
},
"author": "Arya Wibowo Jati",
"license": "MIT",
"dependencies": {
"@prisma/client": "^5.20.0",
"axios": "^1.7.7",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"firebase-admin": "^12.7.0",
"jsonwebtoken": "^9.0.2",
"midtrans-client": "^1.4.2",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.16",
"prisma": "^5.20.0",
"reflect-metadata": "^0.2.2",
"ts-express-api-starter": "file:"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.13",
"@types/jsonwebtoken": "^9.0.7",
"@types/multer": "^1.4.12",
"@types/node": "^22.7.4",
"@types/nodemailer": "^6.4.17",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"eslint": "^9.11.1",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"tsx": "^4.19.1",
"typescript": "^5.6.2"
}
}