-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.37 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
{
"name": "peerdb",
"private": true,
"version": "0.3.0",
"type": "module",
"description": "A collaborative database.",
"license": "Apache-2.0",
"author": {
"name": "PeerDB contributors",
"url": "https://gitlab.com/peerdb/peerdb"
},
"engines": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "https://gitlab.com/peerdb/peerdb.git"
},
"scripts": {
"serve": "vite serve",
"build": "vite build",
"lint": "eslint --fix src",
"lint-style": "stylelint --fix src/**/*.{css,scss,vue.html}",
"lint-vue": "vue-tsc --noEmit",
"fmt": "prettier src --write",
"test": "vitest",
"coverage": "vitest --coverage",
"test-ci": "vitest run --reporter junit --reporter default --outputFile tests.xml --coverage",
"upgrade": "ncu -u"
},
"dependencies": {
"@headlessui/vue": "^1.7.23",
"@heroicons/vue": "^2.2.0",
"@tozd/identifier": "^0.4.0",
"esm-seedrandom": "^3.0.5",
"lodash-es": "^4.17.21",
"nouislider": "^15.8.1",
"structured-field-values": "^2.0.4",
"uuid": "^11.0.3",
"vue": "^3.5.13",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@babel/types": "^7.26.3",
"@eslint/compat": "^1.2.4",
"@eslint/js": "^9.16.0",
"@headlessui/tailwindcss": "^0.2.1",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"@types/eslint__js": "^8.42.3",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.10.1",
"@types/uuid": "^10.0.0",
"@typescript/lib-dom": "npm:@types/web@^0.0.186",
"@vitejs/plugin-vue": "^5.2.1",
"@vitest/coverage-v8": "^2.1.8",
"@vue/eslint-config-typescript": "^14.1.4",
"autoprefixer": "^10.4.20",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-vue": "^9.32.0",
"globals": "^15.13.0",
"npm-check-updates": "^17.1.11",
"postcss": "^8.4.49",
"postcss-html": "^1.7.0",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"rollup-plugin-license": "^3.5.3",
"stylelint": "^16.11.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-config-standard-vue": "^1.0.0",
"stylelint-config-tailwindcss": "^0.0.7",
"tailwindcss": "^3.4.16",
"typescript": "^5.6.3",
"typescript-eslint": "^8.18.0",
"vite": "^6.0.3",
"vitest": "^2.1.8",
"vue-component-type-helpers": "^2.1.10",
"vue-tsc": "^2.1.10"
}
}