forked from Skysplit/express-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.14 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
{
"name": "express-ts",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"start": "nodemon",
"test": "test",
"typeorm": "ts-node -r reflect-metadata -r dotenv/config ./node_modules/.bin/typeorm -d src/datasource.ts"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@swc/core": "^1.3.18",
"@types/bcrypt": "^10.0.28-alpha",
"@types/express": "^4.17.14",
"@types/jsonwebtoken": "^8.5.9",
"@types/multer": "^1.4.7",
"@types/node": "^18.11.9",
"@types/nodemon": "^1.19.2",
"@types/passport": "^1.0.11",
"@types/passport-jwt": "^3.0.7",
"@types/passport-local": "^1.0.34",
"@types/uuid": "^8.3.4",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
},
"dependencies": {
"tslib": "^2.4.1",
"bcrypt": "^5.1.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.5-lts.1",
"passport": "^0.6.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"reflect-metadata": "^0.1.13",
"sqlite3": "^5.1.2",
"typeorm": "^0.3.10",
"uuid": "^9.0.0"
}
}