-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.56 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.56 KB
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
{
"name": "fantasy-costco",
"version": "1.0.0",
"author": "Scott Vandehey",
"license": "MIT",
"private": true,
"scripts": {
"dev": "vite",
"build": "run-p type build:vite",
"build:vite": "vite build",
"preview": "vite preview",
"lint": "run-s lint:js lint:css lint:prettier",
"lint:check": "run-s lint:*:check",
"lint:js": "eslint '**/*.{js,ts,vue}' --fix",
"lint:js:check": "eslint '**/*.{js,ts,vue}'",
"lint:css": "stylelint --fix '**/*.{css,scss,vue}'",
"lint:css:check": "stylelint '**/*.{css,scss,vue}'",
"lint:prettier": "prettier . --write",
"lint:prettier:check": "prettier . --check",
"type": "vue-tsc --noEmit -p tsconfig.app.json --composite false"
},
"dependencies": {
"firebase": "12.10.0",
"marked": "17.0.4",
"vue": "3.5.29"
},
"devDependencies": {
"@rushstack/eslint-patch": "1.16.1",
"@tsconfig/node24": "24.0.4",
"@types/marked": "6.0.0",
"@types/node": "24.12.0",
"@vitejs/plugin-vue": "6.0.4",
"@vue/eslint-config-prettier": "9.0.0",
"@vue/eslint-config-typescript": "14.7.0",
"@vue/tsconfig": "0.9.0",
"eslint": "9.39.3",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-vue": "10.8.0",
"globals": "17.4.0",
"npm-run-all2": "8.0.4",
"postcss-html": "1.8.1",
"prettier": "3.8.1",
"sass": "1.97.3",
"stylelint": "16.26.1",
"stylelint-config-recommended-vue": "1.6.1",
"stylelint-config-spaceninja": "15.0.0",
"typescript": "5.9.3",
"vite": "7.3.1",
"vue-eslint-parser": "10.4.0",
"vue-tsc": "3.2.5"
}
}