-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 839 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
{
"name": "nodejs-express-example-app",
"version": "1.0.0",
"description": "NodeJS app example",
"main": "src/server.ts",
"scripts": {
"start": "ts-node index.ts",
"test": "jest"
},
"dependencies": {
"dotenv": "^16.0.1",
"express": "^4.18.1",
"jsonwebtoken": "^9.0.0",
"mongodb": "^5.0.0",
"nodemon": "^2.0.19",
"pg": "^8.8.0",
"reflect-metadata": "^0.1.13",
"ts-node": "^10.9.1",
"typeorm": "^0.3.9"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^29.0.0",
"@types/jsonwebtoken": "^9.0.1",
"@types/node": "^20.1.5",
"@types/pg": "^8.6.5",
"@types/supertest": "^2.0.12",
"jest": "^28.1.3",
"supertest": "^6.2.4",
"ts-jest": "^28.0.8",
"typescript": "^4.8.2"
},
"author": "bozzelliandrea",
"license": "ISC"
}