-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
96 lines (96 loc) · 2.92 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
{
"name": "fairhub-data-portal",
"private": true,
"scripts": {
"build": "nuxt build && yarn prisma:generate",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"lint:js": "eslint --ext \".ts,.vue\" --ignore-path .gitignore .",
"lint:prettier": "prettier --check .",
"lint": "yarn lint:js && yarn lint:prettier",
"lintfix": "prettier --write --list-different . && yarn lint:js --fix",
"prisma:generate": "prisma generate",
"prisma:migrate:deploy": "prisma migrate deploy",
"prisma:migrate:dev": "prisma migrate dev --preview-feature",
"prisma:studio": "prisma studio",
"prisma:db:pull": "prisma db pull",
"scripts:edit:record": "tsx ./scripts/edit-record.ts",
"postinstall": "nuxt prepare"
},
"devDependencies": {
"@bg-dev/nuxt-naiveui": "1.10.1",
"@faker-js/faker": "8.4.1",
"@nuxtjs/device": "3.1.1",
"@nuxtjs/eslint-config-typescript": "12.1.0",
"@nuxtjs/google-fonts": "3.1.3",
"@nuxtjs/sitemap": "5.1.0",
"@nuxtjs/tailwindcss": "6.11.4",
"@tailwindcss/typography": "0.5.10",
"@types/byte-size": "^8.1.2",
"@types/marked": "6.0.0",
"@types/node": "^18",
"@types/sanitize-html": "2.11.0",
"@types/uuid": "^9.0.8",
"@types/validator": "13.11.9",
"@typescript-eslint/parser": "^5.59.6",
"dayjs-nuxt": "2.1.9",
"dotenv": "16.4.5",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-simple-import-sort": "12.0.0",
"eslint-plugin-sort-keys-custom-order": "1.0.5",
"eslint-plugin-unused-imports": "3.1.0",
"npm-run-all": "4.1.5",
"nuxt": "^3.11.2",
"nuxt-headlessui": "1.1.4",
"nuxt-icon": "0.6.8",
"nuxt-link-checker": "^3.0.0-rc.6",
"nuxt-schema-org": "3.3.4",
"nuxt-simple-robots": "^4.0.0-rc.13",
"prettier": "3.2.5",
"prettier-plugin-tailwindcss": "0.5.11",
"prisma": "^5.11.0",
"tailwindcss-debug-screens": "2.2.1",
"ts-node": "10.9.2",
"tsx": "4.7.1",
"typescript": "5.3.3"
},
"dependencies": {
"@azure/msal-node": "^2.6.6",
"@citation-js/core": "^0.7.6",
"@citation-js/plugin-csl": "^0.7.6",
"@css-render/vue3-ssr": "^0.15.12",
"@headlessui/vue": "1.7.19",
"@iconify/vue": "^4.1.1",
"@nuxt/image": "1.3.0",
"@pinia/nuxt": "0.5.1",
"@prisma/client": "^5.11.0",
"@vueuse/core": "10.8.0",
"byte-size": "^8.1.1",
"citation-js": "^0.7.8",
"d3": "^7.8.5",
"dayjs": "1.11.10",
"marked": "12.0.0",
"nanoid": "5.0.6",
"notivue": "2.2.1",
"nuxt-umami": "^2.5.7",
"pinia": "2.1.7",
"sanitize-html": "2.11.0",
"schema-dts": "^1.1.2",
"textures": "^1.2.3",
"uuid": "^9.0.1",
"validator": "13.11.0",
"vue-json-pretty": "2.3.0",
"vue3-lottie": "3.2.0",
"vue3-marquee": "4.2.0"
},
"engines": {
"node": ">=18.0.0"
},
"volta": {
"node": "20.9.0",
"yarn": "1.22.19"
}
}