-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.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
{
"$schema": "https://json.schemastore.org/package.json",
"author": "Romain Racamier-Lafon <[email protected]>",
"bugs": "https://github.com/Shuunen/c-est-donne/issues",
"dependencies": {
"@auth0/auth0-vue": "2.3",
"@shoelace-style/shoelace": "2.19",
"shuutils": "10.2",
"vue": "3.5",
"vue3-carousel": "0.12"
},
"description": "Donations between friends made easy !",
"devDependencies": {
"@types/node": "22",
"@vitejs/plugin-vue": "5",
"@vitest/coverage-v8": "2.1",
"autoprefixer": "10",
"eslint": "*",
"eslint-plugin-shuunen": "0.4",
"postcss": "8",
"repo-check": "1.40",
"rollup-plugin-visualizer": "5.14",
"tailwindcss": "3.4",
"typescript": "5.7",
"vite": "6.0",
"vitest": "2.1",
"vue-tsc": "2.2"
},
"files": [
"src"
],
"homepage": "https://github.com/Shuunen/c-est-donne",
"keywords": [
"donate",
"friends",
"second-life"
],
"license": "A-GPL-3.0",
"name": "c-est-donne",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/Shuunen/c-est-donne.git"
},
"scripts": {
"build": "vue-tsc --noEmit && echo vue-tsc success && vite build && pnpm mark && echo build success",
"build:watch": "watchlist public src -eager -- pnpm build",
"check": "pnpm install && echo install success && pnpm build && repo-check && pnpm lint && pnpm test && echo check success",
"dev": "vite",
"lint": "tsc --noEmit && echo tsc success && eslint --cache src && echo lint success",
"lint:watch": "watchlist src tests -eager -- pnpm lint",
"mark": "unique-mark dist/**/*.{html,js}",
"postversion": "git push && git push --tags",
"preversion": "pnpm check",
"preview": "vite preview",
"test": "vitest --run --coverage && echo test success",
"test:update": "vitest --run --update && echo test update success",
"test:watch": "vitest --coverage"
},
"type": "module",
"version": "1.0.0"
}