-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.8 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
{
"name": "autocmt",
"version": "1.0.0",
"description": "",
"main": "dist/src/main.ts",
"scripts": {
"start": "bun run src/main.ts",
"migrate": "tsc && sequelize-cli db:migrate --migrations-path dist/migrations",
"migrate:fresh": "tsc && sequelize-cli db:migrate:undo:all --migrations-path dist/migrations && sequelize-cli db:migrate --migrations-path dist/migrations",
"migrate:wipe": "tsc && sequelize-cli db:migrate:undo:all --migrations-path dist/migrations"
},
"dependencies": {
"@inquirer/prompts": "^5.5.0",
"@types/chalk": "^2.2.0",
"@types/clipboardy": "^2.0.1",
"@types/inquirer": "^9.0.7",
"@types/inquirer-fuzzy-path": "^2.3.9",
"@types/prompts": "^2.4.9",
"@types/readline-sync": "^1.4.8",
"@types/sequelize": "^4.28.20",
"@types/sqlite3": "^3.1.11",
"chalk": "^5.3.0",
"clipboardy": "^4.0.0",
"copy-image-clipboard": "^2.1.2",
"delay": "^6.0.0",
"fs": "^0.0.1-security",
"inquirer": "^10.2.2",
"inquirer-file-selector": "^0.4.0",
"inquirer-file-tree-selection-prompt": "^2.0.5",
"inquirer-fuzzy-path": "^2.3.0",
"path": "^0.12.7",
"process": "^0.11.10",
"prompts": "^2.4.2",
"puppeteer": "^23.3.0",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-adblocker": "^2.13.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"puppeteer-extra-plugin-user-preferences": "^2.4.1",
"readline-sync": "^1.4.10",
"sequelize": "^6.37.3",
"sequelize-cli": "^6.6.2",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"@types/puppeteer": "^7.0.4",
"esbuild": "^0.23.1",
"typescript": "^5.5.3"
},
"private": true
}