-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 930 Bytes
/
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
{
"name": "shakespeare",
"private": true,
"license": "MIT",
"scripts": {
"start": "nuxi start",
"build": "nuxi build",
"dev": "nuxi dev",
"generate": "nuxi generate",
"preview": "nuxi preview",
"sql:migrate": "korob start src/scripts/migrate.ts",
"sql:types": "kysely-codegen",
"postinstall": "nuxi prepare && kysely-codegen",
"format": "prettier --write \"./src/**/*.{ts,vue}\"",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@types/node": "18.17.17",
"@types/pg": "8.11.6",
"korob": "0.2.1",
"kysely-codegen": "0.15.0",
"nuxt": "3.12.4",
"nuxt-security": "2.0.0-rc.9",
"stylus": "0.63.0"
},
"dependencies": {
"@fontsource-variable/manrope": "5.0.20",
"@phosphor-icons/vue": "2.2.1",
"chart.js": "4.4.3",
"kysely": "0.27.4",
"minio": "7.1.3",
"pg": "8.12.0",
"slova": "2.2.9",
"vue-chartjs": "5.3.1"
}
}