-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 2.16 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
{
"name": "friends-vk-bot",
"version": "1.0.0",
"description": "",
"engines": {
"node": "^20.0.0",
"npm": "^10.0.0"
},
"main": "compiled/app/index.js",
"scripts": {
"start": "nodemon app/src/index.ts",
"daily": "npm run build-back && node compiled/app/daily/run-daily",
"polls-watch": "npm run build-back && node compiled/app/polls-watch/run-polls-watch",
"test": "jest --config=./app/jest.config.js",
"migrate": "node-pg-migrate",
"build-back": "tsc --project app",
"build-front": "tsc --project front && webpack --config front/webpack.config.cjs --mode development",
"build-front-prod": "tsc --project front && webpack --config front/webpack.config.cjs --mode production"
},
"dependencies": {
"@babel/polyfill": "^7.12.1",
"@emotion/react": "^11.10.0",
"@emotion/styled": "^11.10.0",
"@mui/icons-material": "^5.10.2",
"@mui/material": "^5.10.2",
"async-retry": "^1.3.3",
"canvas": "^2.11.2",
"cheerio": "^1.0.0-rc.10",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"mp3-to-wav": "^0.1.11",
"needle": "^3.0.0",
"node-pg-migrate": "^5.10.0",
"npm-watch": "^0.11.0",
"pg": "^8.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tesseract.js": "^5.0.5"
},
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"@types/async-retry": "^1.4.4",
"@types/express": "^4.17.13",
"@types/jest": "^29.5.12",
"@types/needle": "^2.5.3",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"css-loader": "^6.2.0",
"eslint": "^7.32.0",
"eslint-plugin-react": "^7.25.1",
"jest": "^29.7.0",
"mini-css-extract-plugin": "^2.3.0",
"nodemon": "^2.0.16",
"style-loader": "^3.2.1",
"ts-jest": "^29.1.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.4",
"webpack": "^5.91.0",
"webpack-cli": "^4.10.0"
},
"license": "MIT"
}