-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
104 lines (104 loc) · 3.34 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
95
96
97
98
99
100
101
102
103
104
{
"name": "bulletproof-vue",
"version": "0.0.1",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview --port 5050",
"test:unit": "vitest run --environment jsdom",
"test:unit:dev": "vitest --environment jsdom",
"test:e2e": "start-server-and-test preview http://127.0.0.1:5050/ 'cypress open'",
"test:e2e:ci": "start-server-and-test preview http://127.0.0.1:5050/ 'cypress run'",
"typecheck": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"formatcheck": "npm run prettier -- --list-different",
"prettier": "prettier --ignore-path .gitignore --write \"**/*.+(js|json|ts|tsx)\"",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"prepare": "husky install",
"lint-staged": "lint-staged",
"validate": "npm-run-all --parallel lint-staged"
},
"dependencies": {
"@headlessui/vue": "^1.7.4",
"@heroicons/vue": "^2.0.13",
"@tailwindcss/typography": "^0.5.2",
"@tanstack/vue-query": "^4.13.4",
"@vee-validate/zod": "^4.6.7",
"@vueuse/head": "^0.7.9",
"axios": "^0.27.2",
"dayjs": "^1.11.4",
"dompurify": "^2.3.8",
"jwt-decode": "^3.1.2",
"jwt-encode": "^1.0.1",
"lodash": "^4.17.21",
"marked": "^4.0.17",
"nanoid": "^4.0.0",
"pinia": "^2.0.14",
"react": "^16.14.0",
"type-fest": "^2.19.0",
"vee-validate": "^4.6.6",
"vue": "^3.2.33",
"vue-error-boundary": "^2.0.1",
"vue-router": "^4.0.13",
"yup": "^0.32.11",
"zod": "^3.18.0"
},
"devDependencies": {
"@babel/core": "^7.17.12",
"@faker-js/faker": "^7.5.0",
"@mswjs/data": "^0.10.1",
"@rushstack/eslint-patch": "^1.1.0",
"@storybook/addon-actions": "^6.5.12",
"@storybook/addon-essentials": "^6.5.12",
"@storybook/addon-links": "^6.5.12",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/builder-vite": "^0.2.2",
"@storybook/vue3": "^6.5.12",
"@testing-library/cypress": "^8.0.3",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/user-event": "^14.4.3",
"@testing-library/vue": "^6.6.1",
"@types/dompurify": "^2.4.0",
"@types/jsdom": "^16.2.14",
"@types/marked": "^4.0.7",
"@types/node": "^17.0.34",
"@vitejs/plugin-vue": "^3.1.0",
"@vitejs/plugin-vue-jsx": "^2.0.1",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^10.0.0",
"@vue/test-utils": "^2.0.0-rc.20",
"@vue/tsconfig": "^0.1.3",
"autoprefixer": "^10.4.7",
"babel-loader": "^8.2.5",
"cypress": "^10.9.0",
"eslint": "^8.15.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-storybook": "^0.6.4",
"eslint-plugin-vue": "^8.2.0",
"husky": "^8.0.1",
"jsdom": "^19.0.0",
"lint-staged": "^13.0.3",
"msw": "^0.44.2",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.12",
"prettier": "^2.7.1",
"start-server-and-test": "^1.14.0",
"storybook-vue3-router": "^2.3.1",
"tailwindcss": "^3.0.24",
"typescript": "~4.6.3",
"vite": "^3.1.2",
"vitest": "^0.23.4",
"vue-loader": "^17.0.0",
"vue-tsc": "^0.40.13"
},
"engines": {
"node": "^16.15.0"
},
"msw": {
"workerDirectory": "public/"
},
"lint-staged": {
"*.+(ts|tsx|vue)": ["npm run lint"]
}
}