-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
112 lines (112 loc) · 4.17 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
105
106
107
108
109
110
111
112
{
"name": "lms-frontend-v2",
"version": "0.0.0",
"packageManager": "[email protected]",
"scripts": {
"dev": "vite",
"build": "run-p check:type build-only",
"preview": "vite preview --port 4173",
"test:unit": "vitest --config ./tests/unit.config.ts",
"test:unit:coverage": "vitest --coverage --config ./tests/unit.config.ts",
"test:regression": "concurrently --success first --kill-others \"npm run storybook\" \"wait-on http://localhost:3000 && vitest --config ./tests/regression.config.ts\"",
"test:regression:update": "concurrently --success first --kill-others \"npm run storybook\" \"wait-on http://localhost:3000 && vitest --update --config ./tests/regression.config.ts\"",
"build-only": "vite build",
"check:type": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"check:lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --ignore-path .gitignore --max-warnings=0",
"check:format": "prettier --check .",
"fix:lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore --max-warnings=0",
"fix:format": "prettier --write .",
"check": "run-p fix:*",
"fix": "run-p fix:*",
"storybook": "storybook dev -p 3000",
"build-storybook": "storybook build",
"prepare": "husky install",
"add:component": "pnpx hygen new component --folder components --name",
"add:view": "pnpx hygen new component --folder views --name",
"add:layout": "pnpx hygen new component --folder layouts --name"
},
"dependencies": {
"@brachkow/email-providers": "^1.2.0",
"@formkit/auto-animate": "^0.8.1",
"@sentry/vue": "^8.34.0",
"@tiptap/extension-bubble-menu": "^2.1.12",
"@tiptap/extension-image": "^2.1.12",
"@tiptap/extension-placeholder": "^2.1.12",
"@tiptap/pm": "^2.1.12",
"@tiptap/starter-kit": "^2.1.12",
"@tiptap/vue-3": "^2.1.12",
"@vueuse/core": "^10.5.0",
"axios": "^1.6.1",
"camelcase-keys": "^9.1.2",
"dayjs": "^1.11.10",
"decamelize-keys": "^2.0.1",
"eslint-plugin-vue": "^9.18.1",
"floating-vue": "^2.0.0-beta.24",
"lodash-es": "^4.17.21",
"minidenticons": "^4.2.0",
"pinia": "^2.1.7",
"pinia-plugin-persistedstate": "^3.2.0",
"prismjs": "^1.29.0",
"turndown": "^7.1.2",
"uuid": "^9.0.1",
"vue": "^3.3.8",
"vue-avatar-cropper": "^6.1.1",
"vue-notion": "github:tough-dev-school/vue-notion#2.0.6",
"vue-router": "^4.4.5",
"vue-tabler-icons": "^2.21.0"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@cloudflare/workers-types": "^4.20240512.0",
"@faker-js/faker": "^8.2.0",
"@pinia/testing": "^0.1.3",
"@rushstack/eslint-patch": "^1.5.1",
"@storybook/addon-actions": "^7.5.3",
"@storybook/addon-essentials": "^7.5.3",
"@storybook/addon-interactions": "^7.5.3",
"@storybook/addon-links": "^7.5.3",
"@storybook/testing-library": "^0.2.2",
"@storybook/vue3": "^7.5.3",
"@storybook/vue3-vite": "^7.5.3",
"@tailwindcss/typography": "^0.5.10",
"@tsconfig/node18": "^18.2.2",
"@types/jest-image-snapshot": "^6.2.3",
"@types/jsdom": "^21.1.5",
"@types/lodash-es": "^4.17.11",
"@types/node": "^20.9.0",
"@types/turndown": "^5.0.4",
"@types/uuid": "^9.0.7",
"@vitejs/plugin-vue": "^4.4.1",
"@vitest/coverage-istanbul": "^0.34.6",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/test-utils": "^2.4.1",
"@vue/tsconfig": "^0.4.0",
"autoprefixer": "^10.4.16",
"babel-loader": "^9.1.3",
"concurrently": "^8.2.2",
"esbuild": "^0.19.5",
"eslint": "^8.53.0",
"eslint-plugin-storybook": "^0.6.15",
"husky": "^8.0.3",
"jest-image-snapshot": "^6.2.0",
"jsdom": "^22.1.0",
"lint-staged": "^15.0.2",
"npm-run-all": "^4.1.5",
"playwright": "^1.39.0",
"postcss": "^8.4.31",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.69.5",
"storybook": "^7.5.3",
"tailwindcss": "^3.3.5",
"typescript": "~5.2.2",
"vite": "^4.5.0",
"vitest": "1.6.0",
"vue-loader": "^17.3.1",
"vue-tsc": "^1.8.22",
"wait-on": "^7.1.0"
}
}