-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.18 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
{
"name": "tfasoft-api",
"version": "3.0.0",
"description": "TFASoft API service",
"type": "module",
"main": "server.js",
"scripts": {
"test": "link-module-alias && nodemon server.js",
"build": "node_modules/babel-cli/bin/babel.js ./ --source-maps --out-dir dist",
"start": "link-module-alias && node server.js",
"populate": "node_modules/babel-cli/bin/babel-node.js populate.js",
"postinstall": "link-module-alias"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tfasoft/api.git"
},
"keywords": [
"authentication",
"express",
"telegram",
"telegraf",
"js",
"api"
],
"author": "Amirhossein Mohammadi",
"license": "MIT",
"bugs": {
"url": "https://github.com/tfasoft/api/issues"
},
"homepage": "https://github.com/tfasoft/api#readme",
"_moduleAliases": {
"$app": "./app"
},
"dependencies": {
"axios": "^1.3.6",
"cors": "^2.8.5",
"directory-tree": "^3.5.1",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"ioredis": "^5.3.1",
"jsonwebtoken": "^9.0.0",
"link-module-alias": "^1.2.0",
"mongoose": "^6.4.0",
"rayid": "^2.1.2",
"tfa-node-sdk": "^1.6.2"
}
}