-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
71 lines (71 loc) · 2.52 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "hakeshonassybot",
"version": "1.0.0",
"description": "Bot gives achieves for telegram groups users",
"main": "src/bot.js",
"scripts": {
"dotenv:bot": "node -r dotenv/config src/bot/index.js",
"dotenv:api": "node -r dotenv/config src/api/index.js",
"production-setup": "npm run client:build",
"client:dev": "npm run client:build -- --watch",
"client:build": "webpack",
"client:build:production": "npm run client:build -- --mode production",
"api": "node src/api/index.js",
"api:watch": "onchange -i -k 'src/api/**/*.js' -- npm run dotenv:api",
"bot": "node src/bot/index.js",
"bot:watch": "onchange -i -k 'src/bot/**/*.js' -- npm run dotenv:bot",
"test": "jest -i",
"lint": "eslint \"**/*.js\"",
"lint:fix": "npm run lint -- --fix",
"db:create": "node -r dotenv/config node_modules/db-migrate/bin/db-migrate db:create",
"db:migration:generate": "node -r dotenv/config node_modules/db-migrate/bin/db-migrate create $npm_config_name -m ./src/db/migrations --sql-file",
"db:migration:up": "node -r dotenv/config node_modules/db-migrate/bin/db-migrate up -m ./src/db/migrations",
"db:migration:down": "node -r dotenv/config node_modules/db-migrate/bin/db-migrate down -m ./src/db/migrations"
},
"author": "",
"license": "MIT",
"dependencies": {
"cookie-parser": "^1.4.6",
"db-migrate": "^0.11.13",
"db-migrate-pg": "^1.2.2",
"debug": "^4.3.4",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"http-errors": "^2.0.0",
"moment": "^2.29.3",
"morgan": "^1.10.0",
"node-telegram-bot-api": "^0.57.0",
"pg": "^8.7.3",
"proschet": "^1.0.1",
"react": "^18.1.0",
"react-bulma-components": "^4.1.0",
"react-dom": "^18.1.0",
"react-telegram-login": "^1.1.2"
},
"devDependencies": {
"@babel/core": "^7.18.5",
"@babel/preset-env": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"babel-loader": "^8.2.5",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.7.1",
"eslint": "^8.17.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-react": "^7.30.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^28.1.1",
"mini-css-extract-plugin": "^2.6.0",
"mockdate": "^3.0.5",
"onchange": "^7.1.0",
"sass": "^1.52.3",
"sass-loader": "^13.0.0",
"style-loader": "^3.3.1",
"supertest": "^6.2.3",
"uuid": "^8.3.2",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0"
}
}