-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
94 lines (94 loc) · 3.4 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
{
"name": "vuefes-2023",
"version": "1.0.0",
"description": "Vue Fes Japan 2023",
"author": "jiyuujin <[email protected]>",
"private": true,
"type": "module",
"packageManager": "[email protected]",
"engines": {
"node": ">=18.16.0",
"pnpm": ">=8"
},
"scripts": {
"prepare": "husky install",
"dev": "nuxi dev",
"build": "nuxi build",
"generate:transpile": "nuxi generate",
"generate:post-transpile": "node scripts/renameDir.cjs",
"generate": "npm run generate:transpile && npm run generate:post-transpile",
"preview": "nuxi preview",
"local:netlify": "rm -rf dist && pnpm generate && netlify serve --dir=dist",
"format": "prettier --write \"**/*.{js,jsx,json,ts,tsx,vue,md,mdx,css,html,yml,yaml,scss,sass}\" --ignore-path .prettierignore",
"lint": "npm run eslint&& npm run htmllint",
"lint:fix": "npm run eslint:fix && npm run htmllint:fix",
"eslint": "eslint . --ext js,jsx,ts,tsx,vue --ignore-path .eslintignore",
"eslint:fix": "eslint . --ext js,jsx,ts,tsx,vue --ignore-path .eslintignore --fix",
"htmllint": "markuplint \"./app/**/*.vue\" --config .markuplintrc",
"htmllint:fix": "markuplint \"./app/**/*.vue\" --config .markuplintrc --format",
"typecheck": "vue-tsc --noEmit",
"postinstall": "nuxi prepare",
"vitest": "vitest",
"cypress:open": "cypress open --project tests",
"cypress:run": "cypress run --project tests --browser chrome",
"cypress:dev": "IN_CYPRESS=true start-test dev http://127.0.0.1:3000/ cypress:open",
"cypress:ci": "IN_CYPRESS=true NUXT_ENABLE_REGISTER_TICKET=true NUXT_ENABLE_REGISTER_NAMECARD=true NUXT_ENABLE_SHOW_SPEAKER_INFO=true start-test dev http://127.0.0.1:3000/ cypress:run",
"cypress:debug": "IN_CYPRESS=true NUXT_ENABLE_REGISTER_TICKET=true NUXT_ENABLE_REGISTER_NAMECARD=true NUXT_ENABLE_SHOW_SPEAKER_INFO=true start-test dev http://127.0.0.1:3000/ 'cypress run --project tests --browser chrome --spec tests/cypress/e2e/top.cy.ts'"
},
"devDependencies": {
"@markuplint/vue-parser": "3.10.0",
"@markuplint/vue-spec": "3.11.0",
"@nuxt/content": "2.7.0",
"@nuxt/devtools": "0.2.5",
"@nuxt/types": "^2.17.0",
"@nuxthq/studio": "^0.13.4",
"@nuxtjs/device": "3.1.0",
"@nuxtjs/i18n": "8.0.0-beta.13",
"@nuxtjs/supabase": "0.3.6",
"@types/node": "18.13.0",
"@typescript-eslint/eslint-plugin": "6.8.0",
"@typescript-eslint/parser": "6.8.0",
"consola": "3.1.0",
"cypress": "13.2.0",
"eslint": "8.51.0",
"eslint-plugin-vue": "9.17.0",
"eslint-plugin-vuejs-accessibility": "2.2.0",
"husky": "8.0.3",
"markuplint": "3.13.0",
"nuxt": "3.6.5",
"nuxt-og-image": "2.0.20",
"pinceau": "0.18.0",
"prettier": "3.0.3",
"scroll-hint": "^1.2.5",
"start-server-and-test": "2.0.1",
"ts-pattern": "5.0.1",
"typescript": "5.2.2",
"vee-validate": "4.9.6",
"vite-svg-loader": "4.0.0",
"vitest": "0.34.5",
"vue-gtag": "2.0.2-beta.0",
"vue-recaptcha-v3": "2.0.1",
"vue-toastification": "2.0.0-rc.5",
"vue-tsc": "1.7.14"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@markuplint/ml-core",
"postcss",
"vite",
"vue"
]
}
},
"dependencies": {
"@supabase/supabase-js": "2.33.2",
"chrome-aws-lambda": "10.1.0",
"xlsx": "^0.18.5"
},
"resolutions": {
"mlly": "1.4.0",
"nitropack": "2.5.0",
"unstorage": "1.4.1"
}
}