-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 950 Bytes
/
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
{
"name": "@leanylabs/microservice-seed",
"version": "0.0.1",
"author": "LeanyLabs",
"license": "MIT",
"scripts": {
"start": "ts-node-dev ./src/index.ts",
"start:prod": "ts-node -T ./src/index.ts",
"tunnel": "ts-node ./src/tunnel.ts"
},
"dependencies": {
"dotenv": "^5.0.1",
"env-var": "^7.0.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"localtunnel": "^2.0.1",
"morgan": "^1.10.0",
"pg": "^8.6.0",
"querystring": "^0.2.0",
"sequelize": "^6.6.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.4",
"winston": "^3.3.3",
"winston-console-format": "^1.0.8"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/express": "^4.17.9",
"@types/jsonwebtoken": "^8.5.0",
"@types/localtunnel": "^2.0.0",
"@types/morgan": "^1.9.2",
"@types/node": "^14.14.41",
"@types/winston": "^2.4.4",
"debug": "~2.6.9",
"ts-node-dev": "^1.1.1"
}
}