-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
51 lines (51 loc) · 1.48 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
{
"name": "giftseeker",
"version": "2.2.4",
"author": "CodeSprut",
"license": "MIT",
"description": "Automatically join giveaways",
"homepage": "https://giftseeker.ru/",
"main": "src/electron/main.js",
"repository": {
"type": "git",
"url": "https://github.com/codesprut/giftseeker.git"
},
"scripts": {
"test": "jest",
"test:cov": "jest --coverage",
"start:ui": "electron .",
"start:cli": "node src/cli/main.js",
"dist": "cross-env ELECTRON_BUILDER_ALLOW_UNRESOLVED_DEPENDENCIES=true node build.js",
"dist:win": "npm run dist -- WINDOWS",
"dist:mac": "npm run dist -- MAC",
"dist:linux": "npm run dist -- LINUX"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.16.0",
"cross-env": "^7.0.3",
"electron": "^21.0.1",
"electron-builder": "^23.6.0",
"eslint": "^8.17.0",
"eslint-config-prettier": "^6.15.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.24.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^4.1.0",
"husky": "^4.3.8",
"jest": "^28.1.0",
"lint-staged": "^12.0.3",
"prettier": "^2.7.1"
},
"dependencies": {
"auto-launch": "^5.0.5",
"axios": "^0.27.2",
"chalk": "^4.1.2",
"console-table-printer": "^2.10.0",
"electron-updater": "^5.3.0",
"inquirer": "^8.2.0",
"node-html-parser": "1.2.19",
"tippy.js": "^5.2.1"
}
}