-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.45 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
49
50
51
52
{
"name": "closetbot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "cross-env NODE_ENV=production ts-node index.ts",
"start:dev": "npx nodemon",
"lint": "eslint .",
"local-services": "docker-compose -f ./docker-compose.local-services.yml --env-file ./.env.local-services up"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/mongoose": "^5.11.97",
"@types/passport": "^1.0.14",
"@types/passport-local": "^1.0.37",
"axios": "^1.5.1",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-formidable": "^1.2.0",
"express-session": "^1.17.3",
"google-auth-library": "^9.2.0",
"google-spreadsheet": "^4.1.0",
"googleapis": "^128.0.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.0.0",
"node-cron": "^3.0.3",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"telegraf": "^4.15.0",
"tslib": "^2.6.2"
},
"devDependencies": {
"@babel/preset-typescript": "^7.23.2",
"@types/bcrypt": "^5.0.1",
"@types/cors": "^2.8.15",
"@types/express": "^4.17.20",
"@types/jsonwebtoken": "^9.0.4",
"@types/node": "^20.8.8",
"@types/node-cron": "^3.0.11",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"cross-env": "^7.0.3",
"eslint": "^8.52.0",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}