-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 2.16 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
53
54
55
56
57
58
59
{
"name": "vue3-realworld-example-app",
"private": true,
"scripts": {
"serve": "vite preview --port 4137",
"build": "vite build",
"test:unit": "cypress open --component",
"test:e2e": "yarn build && concurrently -rk -s first \"yarn serve\" \"cypress open --e2e -c baseUrl=http://localhost:4137\"",
"lint": "concurrently \"yarn lint:tsc\" \"yarn lint:script\"",
"dev": "vite",
"generate:api": "sta -p https://raw.githubusercontent.com/gothinkster/realworld/main/api/openapi.yml -o ./src/services -n api.ts",
"lint:script": "eslint \"{src/**/*.{ts,vue},cypress/**/*.ts}\"",
"lint:tsc": "vue-tsc --noEmit -p tsconfig.app.json --composite false",
"prepare": "husky install",
"test": "yarn test:unit:ci && yarn test:e2e:ci",
"test:e2e:ci": "yarn build && concurrently -rk -s first \"yarn serve\" \"cypress run --e2e -c baseUrl=http://localhost:4137\"",
"test:e2e:prod": "cypress run --e2e -c baseUrl=https://vue3-realworld-example-app-mutoe.vercel.app",
"test:unit:ci": "cypress run --component --quiet --reporter spec"
},
"dependencies": {
"@mdi/font": "5.9.55",
"insane": "^2.6.2",
"marked": "^4.0.16",
"pinia": "^2.0.14",
"roboto-fontface": "*",
"vue": "^3.2.37",
"vue-router": "^4.0.15",
"vuetify": "^3.0.0-beta.0",
"webfontloader": "^1.0.0"
},
"devDependencies": {
"@cypress/vue": "^3.1.2",
"@mutoe/eslint-config-preset-vue": "~1.4.0",
"@pinia/testing": "^0.0.12",
"@testing-library/cypress": "^8.0.3",
"@types/marked": "^4.0.3",
"@types/webfontloader": "^1.0.0",
"@vitejs/plugin-vue": "^2.3.3",
"@vue/tsconfig": "^0.1.3",
"concurrently": "^7.2.1",
"cypress": "^10.1.0",
"eslint": "^8.17.0",
"eslint-plugin-cypress": "^2.12.1",
"husky": "^8.0.0",
"lint-staged": "^13.0.0",
"rollup-plugin-analyzer": "^4.0.0",
"swagger-typescript-api": "^9.3.1",
"typescript": "~4.7.2",
"vite": "^2.9.10",
"vue-cli-plugin-vuetify": "~2.5.8",
"vue-tsc": "^0.37.3",
"webpack-plugin-vuetify": "^2.0.0-alpha.0"
},
"license": "MIT",
"lint-staged": {
"src/**/*.{ts,vue}": "eslint --fix",
"cypress/**/*.ts": "eslint --fix"
}
}