-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.35 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
{
"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 --ext .js,.vue,.ts,.html --ignore-path .gitignore --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.19",
"@heroicons/vue": "^2.1.3",
"@tozd/identifier": "^0.3.0",
"esm-seedrandom": "^3.0.5",
"lodash-es": "^4.17.21",
"nouislider": "^15.7.1",
"structured-field-values": "^2.0.4",
"uuid": "^9.0.1",
"vue": "^3.4.21",
"vue-router": "^4.3.0"
},
"devDependencies": {
"@babel/types": "^7.24.0",
"@headlessui/tailwindcss": "^0.2.0",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.10",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.11.30",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"@typescript/lib-dom": "npm:@types/web@^0.0.142",
"@vitejs/plugin-vue": "^5.0.4",
"@vitest/coverage-v8": "^1.4.0",
"@vue/eslint-config-typescript": "^13.0.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-vue": "^9.23.0",
"npm-check-updates": "^16.14.17",
"postcss": "^8.4.38",
"postcss-html": "^1.6.0",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.12",
"rollup-plugin-license": "^3.3.1",
"stylelint": "^16.2.1",
"stylelint-config-standard": "^36.0.0",
"stylelint-config-standard-vue": "^1.0.0",
"stylelint-config-tailwindcss": "^0.0.7",
"tailwindcss": "^3.4.1",
"typescript": "^5.4.3",
"vite": "^5.2.10",
"vitest": "^1.4.0",
"vue-component-type-helpers": "^2.0.7",
"vue-tsc": "^2.0.7"
}
}