-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.12 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
{
"name": "express-api-starter",
"version": "1.0.0",
"description": "Build API using express node typescript",
"main": "index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start:dev": "nodemon src/index.ts",
"build": "tsc",
"server": "node dist/index.js"
},
"author": "herisusanto",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.16",
"@types/express": "^4.17.20",
"@types/jsonwebtoken": "^9.0.5",
"@types/lodash": "^4.14.201",
"@types/morgan": "^1.9.9",
"@types/node": "^20.8.10",
"express": "^4.18.2",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.2.2"
},
"dependencies": {
"@types/express-validator": "^3.0.0",
"@types/mongoose": "^5.11.97",
"axios": "^1.6.2",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express-validator": "^7.0.1",
"joi": "^17.11.0",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"mongoose": "^8.0.0",
"morgan": "^1.10.0"
}
}