-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
124 lines (124 loc) · 2.94 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "Ani-desktop-wallpaper",
"productName": "Ani desktop wallpaper",
"description": "Set a new wallpaper in a chosen interval with chosen tags",
"version": "1.3.2",
"repository": "MarchWorks/Ani-desktop-wallpaper",
"main": "main/index.js",
"scripts": {
"dev": "electron .",
"build": "yarn build-renderer && yarn build-app",
"deploy": "yarn build-renderer && yarn deploy-app",
"build-app": "electron-builder",
"deploy-app": "electron-builder build --publish always",
"build-renderer": "cross-env NODE_ENV=production next build renderer && next export renderer",
"test": "yarn test-lint",
"test-lint": "xo",
"lintfix": "xo --fix"
},
"build": {
"appId": "com.marchworks.ani-desktop-wallpaper",
"files": [
"**/*",
"!renderer",
"renderer/out"
],
"win": {
"icon": "main/static/icons/icon.png",
"publish": {
"provider": "github"
}
},
"mac": {
"icon": "main/static/icons/icon.png",
"extendInfo": {
"LSUIElement": 1
}
},
"asar": true
},
"author": "MarchWorks<[email protected]>",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"yarn test-lint",
"prettier --single-quote --write --no-editorconfig",
"git add"
]
},
"xo": {
"parser": "babel-eslint",
"extends": [
"prettier",
"prettier/react",
"plugin:react/recommended"
],
"env": [
"browser",
"node"
],
"settings": {
"react": {
"version": "detect"
}
},
"rules": {
"camelcase": 0,
"no-async-promise-executor": 0,
"no-await-in-loop": 0,
"no-negated-condition": 0,
"no-void": 0,
"react/react-in-jsx-scope": 0,
"react/prop-types": 0,
"require-atomic-updates": 0,
"import/no-unresolved": 0,
"import/no-extraneous-dependencies": 0,
"complexity": 0,
"max-params": 0,
"lines-between-class-members": 0,
"semi": [
2,
"always"
]
},
"ignores": [
"dist",
"renderer/.next",
"renderer/out"
]
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"cross-env": "^7.0.2",
"electron": "^30.0.1",
"electron-builder": "^24.13.3",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-react": "^7.34.1",
"husky": "^4.2.3",
"lint-staged": "^11.1.1",
"next": "^10.0.4",
"prettier": "^3.2.5",
"react": "^16.12.0",
"react-dom": "^16.13.0",
"xo": "^0.24.0"
},
"dependencies": {
"electron-is-dev": "^3.0.1",
"electron-log": "^5.1.2",
"electron-next": "^3.1.5",
"electron-store": "^5.1.1",
"react-color": "^2.19.3",
"react-dnd": "^5.0.0",
"react-dnd-html5-backend": "^3.0.2",
"react-switch": "^7.0.0",
"react-tag-input": "^6.5.4",
"request": "^2.88.2",
"wallpaper": "^7.2.1"
}
}