-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 786 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 786 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
{
"name": "usertransactionapi",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.12",
"@types/ioredis": "^4.26.4",
"@types/jsonwebtoken": "^8.5.2",
"@types/node": "^15.12.4",
"@types/redis": "^2.8.29",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"express": "^4.17.1",
"ioredis": "^4.27.6",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"pg": "^8.6.0",
"reflect-metadata": "^0.1.13",
"ts-node-dev": "^1.1.6",
"typeorm": "^0.2.34",
"typescript": "^4.3.4"
},
"scripts": {
"dev": "ts-node-dev --transpile-only --ignore-watch node_modules src/server.ts",
"start": "ts-node src/server.ts"
}
}