-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
117 lines (117 loc) · 3.48 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
{
"name": "nx-vite-infra",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"frontend-vue:dev": "nx run frontend-vue:preview",
"frontend-vue:build": "nx run frontend-vue:build",
"lint": "nx run-many --target=lint --all --parallel",
"test": "nx run-many --target=test --all --parallel",
"build": "nx run-many --target=build --all --parallel",
"storybook:serve": "nx run ui-kit-vue:storybook",
"storybook:build": "nx run ui-kit-vue:build",
"prepare": "husky install"
},
"private": true,
"devDependencies": {
"@babel/core": "^7.20.12",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "~8.57.0",
"@nrwl/eslint-plugin-nx": "^19.7.2",
"@nrwl/jest": "19.7.2",
"@nrwl/js": "19.7.2",
"@nrwl/linter": "19.7.2",
"@nrwl/workspace": "19.7.2",
"@nx/esbuild": "19.7.2",
"@nx/jest": "19.7.2",
"@nx/js": "19.7.2",
"@nx/next": "19.7.2",
"@nx/node": "19.7.2",
"@nx/storybook": "19.7.2",
"@nx/vite": "19.7.2",
"@nx/vue": "19.7.2",
"@nx/web": "19.7.2",
"@storybook/addon-essentials": "^8.2.8",
"@storybook/addon-interactions": "^8.2.8",
"@storybook/addon-themes": "^8.3.5",
"@storybook/core-server": "^8.2.8",
"@storybook/jest": "^0.2.3",
"@storybook/test-runner": "^0.13.0",
"@storybook/testing-library": "^0.2.2",
"@storybook/vue3": "^8.2.8",
"@storybook/vue3-vite": "^8.2.8",
"@swc-node/register": "~1.9.1",
"@swc/core": "~1.5.7",
"@swc/helpers": "~0.5.11",
"@testing-library/react": "15.0.6",
"@types/jest": "29.5.12",
"@types/node": "18.19.9",
"@types/react": "18.3.1",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "7.18.0",
"@vitejs/plugin-vue": "^5.1.3",
"@vitest/coverage-v8": "^1.0.4",
"@vitest/ui": "^1.3.1",
"@vue/eslint-config-prettier": "7.1.0",
"@vue/eslint-config-typescript": "^11.0.3",
"@vue/test-utils": "^2.4.1",
"autoprefixer": "^10.4.13",
"babel-jest": "^29.7.0",
"babel-loader": "^8.3.0",
"c8": "^7.12.0",
"copyfiles": "^2.4.1",
"esbuild": "^0.19.2",
"eslint": "8",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-next": "14.2.3",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-vitest": "^0.5.4",
"eslint-plugin-vue": "^9.28.0",
"husky": "^8.0.3",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-environment-node": "^29.7.0",
"jsdom": "~22.1.0",
"lint-staged": "^13.1.1",
"nx": "19.7.2",
"nx-cloud": "19.1.0",
"postcss": "8.4.38",
"prettier": "^2.6.2",
"rxjs": "^7.8.0",
"storybook": "^8.2.8",
"tailwindcss": "3.4.3",
"ts-jest": "29.1.5",
"ts-node": "10.9.1",
"typescript": "~5.5.2",
"vite": "^5.0.0",
"vite-plugin-eslint": "^1.6.0",
"vitest": "^1.3.1",
"vitest-preview": "latest",
"vue": "^3.3.4",
"vue-eslint-parser": "^9.4.3",
"vue-loader": "^16.8.3",
"vue-tsc": "^2.0.0"
},
"overrides": {
"vite": "^3.1.8"
},
"dependencies": {
"@prisma/client": "^5.19.1",
"apollo-server": "^3.13.0",
"axios": "^1.6.0",
"dotenv": "^16.4.5",
"graphql": "^16.9.0",
"next": "14.2.3",
"nexus": "^1.3.0",
"prisma": "^5.19.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"tslib": "^2.3.0",
"vue-router": "^4.2.4"
}
}