-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.48 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.48 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
{
"name": "telegram-cloud-storage",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "16.x"
},
"scripts": {
"start": "cd dist && NODE_ENV=production node index.js",
"build": "rm -rf dist && npm run react:build && tsc --sourceMap false && mv ui/build dist/ui && mkdir dist/uploads",
"react:build": "cd ui && npm run build && cd ..",
"react:dev": "cd ui && PORT=3001 npm start",
"node:dev": "NODE_ENV=development nodemon server/index.ts",
"install": "npm install --prefix ./ui",
"android:dev": "npx cap run android"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@capacitor/android": "4.4.0",
"@capacitor/core": "4.4.0",
"@capacitor/ios": "4.4.0",
"bcrypt": "5.1.0",
"body-parser": "1.20.1",
"cli-progress": "^3.9.0",
"cors": "2.8.5",
"dotenv": "^10.0.0",
"express": "4.18.2",
"glob": "^7.1.7",
"jsonwebtoken": "8.5.1",
"mongoose": "6.6.5",
"multer": "1.4.5-lts.1",
"node-telegram-bot-api": "^0.53.0",
"nodemon": "^2.0.20",
"readline": "^1.3.0",
"request": "^2.88.2",
"yargs": "^17.0.1"
},
"devDependencies": {
"@capacitor/cli": "4.4.0",
"@types/express": "4.17.14",
"@types/glob": "^7.1.3",
"@types/jsonwebtoken": "8.5.9",
"@types/multer": "1.4.7",
"@types/node": "15.14.9",
"@types/node-telegram-bot-api": "^0.51.1",
"@types/yargs": "^17.0.0",
"ts-node": "10.9.1",
"typescript": "4.8.4"
}
}