-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.13 KB
/
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
41
42
43
44
45
46
47
48
{
"name": "typescript-express-simple-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"local": "nodemon --exec ts-node -- ./src/index.ts",
"check": "gts check",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix"
},
"keywords": [],
"author": "Benjamin Benson",
"license": "MIT",
"dependencies": {
"body-parser": "1.19.0",
"chalk": "4.1.0",
"cors": "2.8.5",
"dotenv": "8.2.0",
"express": "4.17.1",
"helmet": "4.1.1",
"http-status": "1.4.2",
"joi": "17.2.1",
"lodash": "4.17.20",
"reflect-metadata": "0.1.13",
"sqlite3": "5.0.0",
"tsyringe": "4.3.0"
},
"devDependencies": {
"@types/bcrypt": "3.0.0",
"@types/chalk": "2.2.0",
"@types/cors": "2.8.7",
"@types/dotenv": "8.2.0",
"@types/express": "4.17.8",
"@types/joi": "14.3.4",
"@types/jwt-then": "1.0.0",
"@types/lodash": "4.14.161",
"@types/morgan": "1.9.1",
"@types/node": "12.12.64",
"@types/sqlite3": "3.1.6",
"gts": "2.0.2",
"morgan": "1.10.0",
"nodemon": "2.0.4",
"ts-node": "9.0.0",
"typescript": "4.0.3"
}
}