-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·63 lines (63 loc) · 2.33 KB
/
package.json
File metadata and controls
executable file
·63 lines (63 loc) · 2.33 KB
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
{
"scripts": {
"clean": "rimraf dist .cache",
"start": "node dist/index.js",
"copy-wallpaper-tool": "cp-cli node_modules/wallpaper/source/win-wallpaper.exe dist/win-wallpaper.exe",
"build": "npm run clean && npm run copy-wallpaper-tool && npm run build:server && npm run build:client",
"build:client": "parcel build src/index.html -d dist/client",
"build:server": "parcel build src/server/index.ts --target node --bundle-node-modules",
"dev": "npm run clean && npm run copy-wallpaper-tool && run-p \"dev:*\"",
"dev:client": "parcel watch src/index.html --no-hmr -d dist/client",
"dev:server": "run-p \"dev:server:*\"",
"dev:server:parcel": "parcel watch src/server/index.ts --target node --bundle-node-modules",
"dev:server:nodemon": "nodemon dist/index --ignore trakt_token.json",
"type-check": "run-s \"type-check:*\"",
"type-check:client": "tsc --project src/client/tsconfig.json --noEmit",
"type-check:server": "tsc --project src/server/tsconfig.json --noEmit"
},
"devDependencies": {
"@types/classnames": "^2.2.11",
"@types/cors": "^2.8.9",
"@types/express": "^4.17.9",
"@types/node-fetch": "^2.5.7",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"eslint": "^7.14.0",
"eslint-config-preact": "^1.1.3",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.0",
"nodemon": "^2.0.6",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.12.4",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"typescript": "^4.1.3"
},
"dependencies": {
"@mdi/font": "^5.8.55",
"classnames": "^2.2.6",
"cors": "^2.8.5",
"cp-cli": "^2.0.0",
"express": "^4.17.1",
"node-fetch": "^2.6.1",
"pkg-dir": "^5.0.0",
"preact": "^10.5.7",
"qbittorrent-api-v2": "^1.2.2",
"systeminformation": "^5.5.0",
"trakt.tv": "^8.0.0",
"wallpaper": "^4.4.2"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"extends": [
"plugin:prettier/recommended",
"preact",
"plugin:@typescript-eslint/recommended"
],
"rules": {
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/ban-ts-comment": "off"
}
}
}