-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.99 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
{
"name": "tudelft-spacefinder",
"private": true,
"scripts": {
"data": "jiti scripts/data/index.ts",
"data:import": "jiti scripts/import-spaces.ts",
"prebuild": "npm run data",
"build": "nuxt build",
"predev": "npm run data",
"dev": "nuxt dev",
"supabase:start": "supabase start",
"supabase:stop": "supabase stop",
"supabase:db:diff": "supabase db diff -f",
"postsupabase:db:diff": "supabase gen types typescript --local > src/types/supabase.ts",
"supabase:db:reset": "supabase db reset",
"test": "npm run test:unit",
"test:e2e": "cypress run",
"pretest:unit": "nuxt prepare",
"test:unit": "vitest",
"lint": "eslint '**/*.vue'",
"lint-staged": "nano-staged",
"prepare": "husky install"
},
"dependencies": {
"@azure/identity": "^3.4.2",
"@kafkajs/confluent-schema-registry": "^3.3.0",
"@microsoft/microsoft-graph-client": "^3.0.7",
"@nuxtjs/supabase": "^1.2.2",
"@pinia/nuxt": "^0.4.7",
"@vite-pwa/nuxt": "^0.0.7",
"@vueuse/core": "^9.13.0",
"@vueuse/nuxt": "^9.13.0",
"csv": "^6.2.7",
"date-fns-tz": "^3.1.3",
"floating-vue": "^2.0.0-beta.20",
"husky": "^8.0.3",
"jiti": "^1.18.2",
"js-cookie": "^2.2.1",
"kafkajs": "^2.2.4",
"mapbox-gl": "^2.13.0",
"nuxt": "^3.2.2",
"pinia": "^2.0.32",
"sitemap": "^7.1.1",
"slugify": "^1.3.4",
"vue-virtual-scroller": "^2.0.0-beta.8"
},
"devDependencies": {
"@datocms/cma-client-node": "^2.0.0",
"@microsoft/microsoft-graph-types": "^2.40.0",
"@types/js-cookie": "^3.0.3",
"@types/mapbox-gl": "^2.7.10",
"@types/node": "^18.14.1",
"@typescript-eslint/parser": "^5.54.0",
"cypress": "^12.7.0",
"dotenv": "^16.3.1",
"eslint": "^8.35.0",
"eslint-plugin-vue": "^9.9.0",
"husky": "^8.0.3",
"nano-staged": "^0.8.0",
"supabase": "^1.167.4",
"vitest": "^0.34.4"
},
"overrides": {
"vue": "latest"
},
"nano-staged": {
"*.vue": "eslint --fix --max-warnings 0"
}
}