-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 991 Bytes
/
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
{
"name": "node-express-api",
"description": "Simple api sample in Node",
"version": "1.0.0",
"private": true,
"main": "src/index.js",
"type": "commonjs",
"scripts": {
"dev": "nodemon src/index.js",
"start": "node src/index.js",
"buildts": "npx tsc",
"start ts": "node dist/index.js",
"dev ts": "nodemon src/index.ts"
},
"author": "Google LLC",
"license": "Apache-2.0",
"dependencies": {
"axios": "^1.7.9",
"bcrypt": "^5.1.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"pg": "^8.13.1",
"redis": "^4.7.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"typeorm": "^0.3.20"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.10.3",
"concurrently": "^9.1.2",
"nodemon": "^3.1.9",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
}
}