-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 808 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 808 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-typescript",
"version": "1.0.0",
"description": "",
"main": "src/app.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"start": "nodemon"
},
"author": "Confidence Yobo",
"license": "ISC",
"dependencies": {
"argon2": "^0.26.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-jwt": "^6.0.0",
"jsonwebtoken": "^9.0.0",
"method-override": "^3.0.0",
"mongoose": "^5.9.6",
"morgan": "^1.10.0"
},
"devDependencies": {
"@types/express": "^4.17.3",
"@types/jest": "^25.1.4",
"@types/mongoose": "^5.7.7",
"@types/node": "^13.9.3",
"jest": "^25.1.0",
"nodemon": "^2.0.2",
"ts-node": "^8.8.1",
"tslint": "^6.1.0",
"typescript": "^3.8.3"
}
}