forked from sef-global/scholarx-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.1 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": "scholarx-frontend",
"version": "1.0.0",
"description": "This is the frontend of the ScholarX",
"main": "index.js",
"scripts": {
"dev": "vite --host",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint --ext .js,.jsx,.ts,.tsx src --color",
"lint:fix": "eslint --ext .js,.jsx,.ts,.tsx src --color --fix",
"storybook": "storybook dev -p 6006",
"test-storybook": "test-storybook",
"build-storybook": "storybook build",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@hookform/resolvers": "^3.3.4",
"@tanstack/react-query": "^5.28.4",
"@tanstack/react-query-devtools": "^5.37.1",
"axios": "^1.4.0",
"dotenv": "^16.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.51.0",
"react-router": "^6.11.2",
"react-router-dom": "^6.11.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@playwright/test": "^1.34.3",
"@storybook/addon-essentials": "^7.0.18",
"@storybook/addon-interactions": "^7.0.27",
"@storybook/addon-links": "^7.0.18",
"@storybook/addon-onboarding": "^1.0.11",
"@storybook/addon-styling-webpack": "^0.0.5",
"@storybook/blocks": "^7.0.18",
"@storybook/jest": "^0.1.0",
"@storybook/react": "^7.0.18",
"@storybook/react-vite": "^7.2.3",
"@storybook/test": "^7.6.12",
"@storybook/test-runner": "^0.11.0",
"@storybook/testing-library": "^0.0.14-next.2",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.60",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^14.0.0",
"@types/css-modules": "^1.0.2",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.59.6",
"@vitejs/plugin-react": "^4.0.4",
"autoprefixer": "^10.4.16",
"css-loader": "^6.7.4",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^37.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.12",
"file-loader": "^6.2.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"less-loader": "^11.1.0",
"postcss": "^8.4.30",
"prettier": "^2.8.8",
"storybook": "^7.0.18",
"storybook-addon-swc": "^1.2.0",
"style-loader": "^3.3.3",
"swc-loader": "^0.2.3",
"tailwindcss": "^3.3.3",
"ts-jest": "^29.1.5",
"typescript": "^5.1.6",
"vite": "^4.4.9"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"testPathIgnorePatterns": [
"<rootDir>/node_modules/"
],
"testMatch": [
"<rootDir>/src/**/*.test.tsx"
],
"setupFilesAfterEnv": [
"<rootDir>/src/setupTests.ts"
]
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}