-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.26 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
{
"name": "adf",
"version": "1.0.0",
"description": "express with TS and TypeORM",
"main": "./src/app.js",
"scripts": {
"start": "nodemon --exec ts-node -- --type-check -r tsconfig-paths/register ./src/app.ts",
"ts-node": "ts-node -r tsconfig-paths/register ./src/app.ts",
"predev": "npm run api-docs",
"dev": "nodemon --exec ts-node src/app.ts"
},
"author": "qlido",
"license": "none",
"private": true,
"dependencies": {
"@types/cookie-parser": "^1.4.3",
"@types/validator": "^13.7.10",
"axios": "^1.4.0",
"bcrypt": "^5.1.0",
"cheerio": "^1.0.0-rc.12",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"eslint-import-resolver-alias": "^1.1.2",
"express": "^4.18.2",
"express-asyncify": "^2.1.1",
"jsonwebtoken": "^9.0.0",
"mysql2": "^3.4.5",
"nodemon": "^2.0.20",
"openai": "^3.3.0",
"puppeteer": "^20.7.4",
"reflect-metadata": "^0.1.13",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.2",
"typeorm": "^0.3.11",
"typescript": "^4.8.4",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/jsonwebtoken": "^9.0.1",
"@types/morgan": "^1.9.3",
"@types/node": "^18.11.18"
}
}