-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 908 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 908 Bytes
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
{
"name": "express-users-app",
"version": "1.0.0",
"description": "A NodeJS Express web application for managing users.",
"main": "src/app.ts",
"scripts": {
"start": "ts-node src/app.ts",
"build": "tsc",
"dev": "nodemon src/app.ts",
"test": "jest --runInBand"
},
"dependencies": {
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.7",
"dotenv": "^17.2.3",
"ejs": "^3.1.6",
"express": "^4.17.1",
"google-auth-library": "^10.4.1",
"jsonwebtoken": "^9.0.2",
"uuid": "^13.0.0"
},
"devDependencies": {
"@types/body-parser": "^1.19.5",
"@types/cookie-parser": "^1.4.9",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.10",
"jest": "^29.7.0",
"nodemon": "^2.0.12",
"ts-jest": "^29.2.5",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"author": "",
"license": "ISC"
}