-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.95 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
{
"name": "reresume",
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "run-p type-check build-only",
"preview": "vite preview --port 4173",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"test:unit": "vitest",
"test:unit@once": "vitest run",
"test:unit@once+coverage": "vitest run --coverage",
"test:unit+coverage": "vitest --coverage",
"test:unit:ci": "vitest run --silent",
"test:e2e": "start-server-and-test 'pnpm preview' http://127.0.0.1:5050/ 'cypress open --e2e'",
"test:e2e:run": "start-server-and-test 'pnpm preview' http://127.0.0.1:5050/ 'cypress run --e2e'",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"lint:es": "eslint . --ext .vue,.js,.cjs,.mjs,.ts,.cts,.mts",
"lint:es@fix": "eslint . --ext .vue,.js,.cjs,.mjs,.ts,.cts,.mts --fix",
"lint:style": "stylelint '**/*.{css,pcss,postcss}'",
"lint:style@fix": "stylelint '**/*.{css,pcss,postcss}' --fix",
"lint": "pnpm lint:es && yarn lint:style",
"lint@fix": "pnpm lint:es@fix && yarn lint:style@fix"
},
"dependencies": {
"pinia": "^2.0.21",
"vue": "^3.2.38",
"vue-router": "^4.1.5"
},
"devDependencies": {
"@babel/core": "^7.19.0",
"@mdx-js/react": "^1.6.22",
"@rushstack/eslint-patch": "^1.1.4",
"@storybook/addon-actions": "^6.5.10",
"@storybook/addon-docs": "^6.5.10",
"@storybook/addon-essentials": "^6.5.10",
"@storybook/addon-interactions": "^6.5.10",
"@storybook/addon-links": "^6.5.10",
"@storybook/builder-vite": "^0.2.2",
"@storybook/testing-library": "^0.0.13",
"@storybook/vue3": "^6.5.10",
"@types/jsdom": "^20.0.0",
"@types/node": "^16.11.56",
"@vitejs/plugin-vue": "^3.0.3",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.0",
"@vue/test-utils": "^2.0.2",
"@vue/tsconfig": "^0.1.3",
"autoprefixer": "^10.4.8",
"babel-loader": "^8.2.5",
"cypress": "^10.7.0",
"eslint": "^8.22.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-storybook": "^0.6.4",
"eslint-plugin-vue": "^9.3.0",
"jsdom": "^20.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.16",
"prettier": "^2.7.1",
"start-server-and-test": "^1.14.0",
"stylelint": "^14.11.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended": "^9.0.0",
"stylelint-config-tailwindcss": "^0.0.6",
"tailwindcss": "^3.1.8",
"typescript": "~4.7.4",
"unplugin-auto-import": "^0.11.2",
"unplugin-vue-components": "^0.22.4",
"vite": "^3.0.9",
"vite-plugin-svg-icons": "^2.0.1",
"vitest": "^0.22.1",
"vue-loader": "^16.8.3",
"vue-tsc": "^0.40.6"
},
"packageManager": "[email protected]",
"pnpm": {
"overrides": {
"postcss@<7.0.36": ">=7.0.36",
"trim@<0.0.3": ">=0.0.3",
"trim-newlines@<3.0.1": ">=3.0.1",
"glob-parent@<5.1.2": ">=5.1.2"
}
}
}