This repository was archived by the owner on Apr 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.9 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.9 KB
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
53
54
55
56
57
58
59
60
{
"name": "routine",
"version": "1.0.0",
"main": "src/index.ts",
"scripts": {
"build": "babel --extensions '.ts,.js' ./src -d ./dist",
"start": "node -r dotenv/config ./index.js",
"start:dev": "yarn run watch & nodemon -e ts,js -w ./src ./dist/index.js",
"watch": "babel --extensions '.ts' ./src -d ./dist --watch"
},
"author": "Yuliy Mievskij <juliy.maj@gmail.com>",
"license": "MIT",
"eslintIgnore": [],
"dependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-classes": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"jsonwebtoken": "^8.5.1",
"cookie-parser": "^1.4.6",
"node-telegram-login": "^2.0.0",
"core-js": "3",
"cors": "^2.8.5",
"date-fns": "^2.16.1",
"express": "^4.17.1",
"express-validator": "^6.13.0",
"moment": "^2.29.1",
"mongoose": "^6.0.12",
"node-fetch": "^2.6.1",
"patch-package": "^6.4.7",
"ts-node": "^10.4.0",
"typescript": "^4.1.3",
"telegraf": "^4.7.0",
"telegraf-session-local": "^2.1.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-classes": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@babel/runtime": "^7.15.4",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-validator": "^3.0.0",
"@types/moment-duration-format": "^2.2.3",
"@types/node": "^16.11.10",
"@types/jsonwebtoken": "^8.5.6",
"nodemon": "^2.0.6",
"ts-node": "^10.4.0",
"typescript": "^4.1.3"
}
}