This repository has been archived by the owner on May 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
127 lines (127 loc) · 4.4 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "vuesion",
"private": true,
"version": "5.0.0",
"description": "Vuesion is a boilerplate that helps product teams build faster than ever with fewer headaches and modern best practices across engineering & design.",
"repository": {
"type": "git",
"url": "https://github.com/vuesion/vuesion.git"
},
"keywords": [
"vue 3",
"vite",
"typescript",
"server-side-rendering",
"boilerplate",
"vitetest",
"enterprise",
"components",
"design-system",
"nuxt 3",
"composition-api"
],
"author": "Johannes Werner <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/vuesion/vuesion",
"bugs": {
"url": "https://github.com/vuesion/vuesion/issues"
},
"scripts": {
"dev": "cross-env NODE_ICU_DATA=node_modules/full-icu nuxt dev",
"storybook:dev": "rm -rf node_modules/.cache/storybook && start-storybook -p 6006",
"test": "cross-env NODE_ICU_DATA=node_modules/full-icu vitest run --coverage",
"new:component": "hygen new component",
"new:store": "hygen new store",
"new:page": "hygen new page",
"new:crud-entity": "hygen new crud-entity && npm run db:migrate",
"db:seed": "ts-node ./prisma/seed.ts",
"db:push": "prisma db push",
"db:migrate": "prisma migrate dev",
"type-gen:swagger": "openapi-typescript https://petstore.swagger.io/v2/swagger.json --output src/interfaces/swagger.ts",
"extract-i18n-messages": "ts-node ./tools/extract-i18n-messages.ts",
"test:watch": "cross-env NODE_ICU_DATA=node_modules/full-icu vitest",
"e2e": "cypress run --headless",
"lint": "eslint . --ext ts,vue --fix --cache && tsc --project ./tsconfig.json --noEmit",
"storybook:build": "build-storybook",
"release:major": "ts-node ./tools/release.ts --major",
"release:minor": "ts-node ./tools/release.ts --minor",
"release:patch": "ts-node ./tools/release.ts --patch",
"build": "nuxt build",
"build:analyze": "nuxt build --analyze",
"build:spa": "nuxt generate",
"start": "cross-env NODE_ICU_DATA=node_modules/full-icu nuxt start",
"ci": "concurrently \"npm run lint\" \"npm run test\"",
"postci": "concurrently \"npm run build\" \"npm run storybook:build\"",
"prepare": "husky install",
"pre-commit": "pretty-quick --staged && concurrently \"npm run lint\" \"npm test\""
},
"dependencies": {
"@pinia/nuxt": "0.4.7",
"@sidebase/nuxt-prisma": "0.1.2",
"@vee-validate/rules": "4.7.4",
"@vueuse/core": "9.13.0",
"animejs": "3.2.1",
"bcrypt": "5.1.0",
"cross-env": "7.0.3",
"full-icu": "1.5.0",
"lodash-es": "4.17.21",
"marked": "4.2.12",
"mitt": "3.0.0",
"next-auth": "4.20.1",
"pinia": "2.0.32",
"vee-validate": "4.7.4"
},
"devDependencies": {
"@babel/core": "7.21.0",
"@commitlint/config-conventional": "17.4.4",
"@nuxtjs/color-mode": "3.2.0",
"@nuxtjs/eslint-config-typescript": "12.0.0",
"@nuxtjs/i18n": "8.0.0-beta.10",
"@sidebase/nuxt-auth": "0.4.2",
"@storybook/addon-actions": "6.5.16",
"@storybook/addon-essentials": "6.5.16",
"@storybook/addon-interactions": "6.5.16",
"@storybook/addon-links": "6.5.16",
"@storybook/builder-vite": "0.4.2",
"@storybook/testing-library": "0.0.13",
"@storybook/vue3": "6.5.16",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/vue": "6.6.1",
"@types/animejs": "3.1.7",
"@types/bcrypt": "5.0.0",
"@types/lodash-es": "4.17.6",
"@types/marked": "4.0.8",
"@typescript-eslint/eslint-plugin": "5.54.0",
"@typescript-eslint/parser": "5.54.0",
"@vitejs/plugin-vue": "4.0.0",
"@vitest/coverage-c8": "0.29.2",
"@vuesion/storybook-theme-switcher": "5.0.0-beta.0",
"babel-loader": "9.1.2",
"c8": "7.13.0",
"concurrently": "7.6.0",
"cypress": "12.7.0",
"eslint": "8.35.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-storybook": "0.6.11",
"eslint-plugin-vue": "9.9.0",
"flush-promises": "1.0.2",
"generate-changelog": "1.8.0",
"html-webpack-plugin": "5.5.0",
"husky": "8.0.3",
"hygen": "6.2.11",
"jsdom": "21.1.0",
"nuxt": "3.2.3",
"openapi-typescript": "5.4.1",
"prettier": "2.8.4",
"pretty-quick": "3.1.3",
"prisma": "4.11.0",
"sass": "1.58.3",
"sass-loader": "13.2.0",
"ts-node": "10.9.1",
"typescript": "4.9.5",
"vite": "4.1.4",
"vite-plugin-eslint": "1.8.1",
"vitest": "0.29.2",
"vue-loader": "17.0.1"
}
}