-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.41 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
72
{
"name": "wooslick",
"version": "0.0.0",
"license": "MIT",
"main": "./dist/main.js",
"description": "Simple browser make with electron.",
"private": true,
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
"scripts": {
"start": "electron .",
"dev": "node build/runners/dev.js",
"make": "yarn build && electron-forge make",
"package": "yarn build && electron-forge package",
"build": "node build/runners/make.js",
"prebuild": "yarn clean",
"release": "electron-forge publish",
"clean": "rimraf dist out",
"lint": "eslint ./ --ext js,ts && stylelint \"**/*.css\"",
"lint:fix": "eslint ./ --ext js,ts --fix && stylelint \"**/*.css\" --fix",
"prettier": "prettier --check ./**/*.{js,ts}",
"prettier:fix": "prettier --write ./**/*.{js,ts}"
},
"author": {
"name": "Pablo Vinícius",
"email": "pablo1vdesk@gmail.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pablo1v/wooslick.git"
},
"engines": {
"node": ">=12"
},
"dependencies": {
"@electron/remote": "1.2.1"
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/eslint-parser": "7.15.8",
"@babel/plugin-syntax-class-properties": "7.12.13",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.8",
"@babel/preset-typescript": "^7.14.5",
"@electron-forge/cli": "^6.0.0-beta.58",
"@electron-forge/maker-deb": "^6.0.0-beta.58",
"@electron-forge/maker-rpm": "^6.0.0-beta.58",
"@electron-forge/maker-zip": "^6.0.0-beta.58",
"@hitechline/eslint-config": "2.0.5",
"babel-loader": "^8.2.2",
"chalk": "^4.1.1",
"chokidar": "^3.5.2",
"electron": "18.3.7",
"esbuild": "^0.12.15",
"eslint": "7.32.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-import-helpers": "1.1.0",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.25.3",
"eslint-plugin-react-hooks": "4.2.0",
"fast-glob": "^3.2.7",
"fs-extra": "^10.0.0",
"prettier": "2.3.2",
"rimraf": "3.0.2",
"stylelint": "^13.13.1",
"stylelint-config-recommended": "^5.0.0",
"stylelint-config-standard": "^22.0.0"
}
}