-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.51 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
{
"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": "10.14.1",
"marked": "12.0.2",
"vue": "3.5.13"
},
"devDependencies": {
"@rushstack/eslint-patch": "1.10.4",
"@tsconfig/node18": "18.2.4",
"@types/marked": "5.0.2",
"@types/node": "20.17.8",
"@vitejs/plugin-vue": "5.2.0",
"@vue/eslint-config-prettier": "9.0.0",
"@vue/eslint-config-typescript": "13.0.0",
"@vue/tsconfig": "0.6.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-vue": "9.31.0",
"npm-run-all2": "6.2.6",
"postcss-html": "1.7.0",
"prettier": "3.4.0",
"sass": "1.81.0",
"stylelint": "16.10.0",
"stylelint-config-recommended-vue": "1.5.0",
"stylelint-config-spaceninja": "15.0.0",
"typescript": "5.6.3",
"vite": "5.4.11",
"vue-tsc": "2.1.10"
}
}