-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
80 lines (80 loc) · 2.54 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
{
"name": "marv",
"version": "1.9.0",
"description": "Marv - Twitch Bot",
"repository": "github:skarab42/marv",
"author": "skarab42 <skarab42@users.noreply.github.com>",
"license": "MIT",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"app:watch": "electron app/main/index.js -w",
"app:build": "electron-builder build",
"client:watch": "rollup -c -w",
"client:build": "rollup -c",
"tailwind:build": "node tailwind/build.js",
"start": "electron app/main/index.js",
"watch": "concurrently -k -n tailwind,client,app -c red,magenta,yellow \"yarn tailwind:build\" \"yarn client:watch\" \"yarn app:watch\"",
"build": "yarn client:build && yarn tailwind:build --prod",
"prettify": "prettier --write ./app ./front-src",
"lint": "eslint ./app ./front-src --fix && yarn prettify",
"change": "git sv cgl > CHANGELOG.md",
"commit": "cz"
},
"build": {
"productName": "Marv",
"icon": "app/static/icon.png",
"linux": {
"category": "Streaming"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@rollup/plugin-alias": "^3.1.1",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"animejs": "^3.2.1",
"axios": "^0.21.1",
"capitalize": "^2.0.3",
"chalk": "^4.1.0",
"chokidar": "^3.5.1",
"clone-deep": "^4.0.1",
"codemirror": "^5.59.2",
"compare-versions": "^3.6.0",
"concurrently": "^5.3.0",
"cz-conventional-changelog": "3.3.0",
"electron": "^11.0.3",
"electron-builder": "^22.9.1",
"electron-rebuild": "^2.3.2",
"eslint": "^7.12.0",
"eslint-plugin-svelte3": "^2.7.3",
"file-saver": "^2.0.5",
"i18next": "^19.8.3",
"i18next-http-backend": "^1.0.21",
"jszip": "^3.6.0",
"prettier": "^2.1.2",
"prettier-plugin-svelte": "^1.4.1",
"rollup": "^2.32.1",
"rollup-plugin-cleaner": "^1.0.0",
"rollup-plugin-css-only": "^2.1.0",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-svelte": "^6.1.0",
"rollup-plugin-svelte-svg": "^0.2.3",
"rollup-plugin-terser": "^7.0.2",
"sequelize-cli": "^6.2.0",
"socket.io-client": "^2.3.1",
"svelte": "^3.29.4",
"svelte-color": "https://github.com/skarab42/svelte-color.git",
"svelte-grid": "1.11.0",
"svelte-icons": "^2.1.0",
"svelte-portal": "^2.1.1",
"sveltejs-tippy": "^3.0.0",
"tailwindcss": "^1.9.6",
"throttle-debounce": "^3.0.1",
"uuid": "^8.3.1"
}
}