-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3.38 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
{
"name": "bree-desktop",
"description": "Bree Desktop Application",
"version": "0.0.9",
"author": "Taylor Schley <[email protected]> (https://github.com/shadowgate15)",
"bin": "scripts/move-binary.mjs",
"bugs": {
"url": "https://github.com/breejs/bree-desktop/issues",
"email": "[email protected]"
},
"contributors": [
"Taylor Schley <[email protected]> (https://github.com/shadowgate15)"
],
"dependencies": {
"@ladjs/graceful": "^2.0.1",
"@nexucis/fuzzy": "^0.4.1",
"@popperjs/core": "^2.11.5",
"@tauri-apps/api": "^1.0.2",
"bootstrap-dark-5": "^1.1.3",
"bootstrap-icons": "^1.8.1",
"dayjs": "^1.11.3",
"is-string-and-not-blank": "^0.0.2",
"pinia": "^2.0.13",
"pinia-plugin-persistedstate": "^1.6.3",
"superagent": "^7.1.6",
"vue": "^3.2.33",
"vue-ls": "^4.2.0",
"vue-router": "^4.0.14"
},
"devDependencies": {
"@actions/github": "^5.0.3",
"@babel/core": "^7.17.12",
"@breejs/api": "^2.1.0",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@prettier/plugin-pug": "^2.0.0",
"@storybook/addon-actions": "^6.4.22",
"@storybook/addon-essentials": "^6.4.22",
"@storybook/addon-links": "^6.4.22",
"@storybook/builder-vite": "^0.1.33",
"@storybook/testing-vue3": "^0.0.2",
"@storybook/vue3": "^6.4.22",
"@tauri-apps/cli": "^1.0.4",
"@testing-library/vue": "^6.4.2",
"@vitejs/plugin-vue": "^2.3.1",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/test-utils": "^2.0.0-rc.21",
"babel-loader": "^8.2.5",
"bree": "^9.1.1",
"concurrently": "^7.1.0",
"cross-env": "latest",
"eslint": "^8.20.0",
"eslint-config-vitest-globals": "^0.0.3",
"eslint-config-xo-lass": "^2.0.1",
"eslint-plugin-vue": "^8.2.0",
"fixpack": "latest",
"husky": "latest",
"jsdom": "^20.0.0",
"lint-staged": "^13.0.3",
"node-fetch": "^3.2.9",
"np": "^7.6.2",
"postcss-nesting": "^10.1.8",
"pug": "^3.0.2",
"remark-cli": "^11.0.0",
"remark-preset-github": "^4.0.4",
"sass": "^1.51.0",
"storybook-addon-css-user-preferences": "^0.0.3",
"storybook-vue3-router": "^2.2.1",
"vite": "^2.9.5",
"vitest": "^0.12.6",
"vue-loader": "^16.8.3",
"xo": "^0.50.0"
},
"homepage": "https://github.com/breejs/bree-desktop",
"keywords": [
"bree-desktop",
"lass"
],
"license": "MIT",
"main": "src/main.js",
"np": {
"testScript": "publish-test"
},
"repository": {
"type": "git",
"url": "https://github.com/breejs/bree-desktop"
},
"scripts": {
"build": "concurrently -p \"[{time}-{name}]\" -c cyan,magenta \"yarn run build:*\"",
"build-storybook": "build-storybook",
"build:vue": "vite build",
"coverage": "vitest run --coverage",
"dev": "cross-env NODE_ENV=development concurrently -p \"[{time} {name}]\" -c cyan,magenta \"yarn run dev:*\"",
"dev:bree": "node example-server/index.mjs",
"dev:vue": "vite --port 3000",
"lint": "yarn run lint:js && yarn run lint:md",
"lint:js": "xo",
"lint:md": "remark . -qfo",
"postversion": "node scripts/update-versions.js",
"prepare": "husky install",
"pretest": "yarn run lint",
"preview": "vite preview --port 5050",
"publish-test": "yarn run lint && vitest run",
"release": "np",
"start:dev": "tauri dev",
"storybook": "start-storybook -p 6006",
"test": "vitest"
}
}