-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.83 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
{
"scripts": {
"build": "npm run pre-build && vite build",
"pre-build": "chmod +x prebuild.sh && ./prebuild.sh",
"test": "ENV=test jest --maxWorkers=2",
"test:coverage": "ENV=test jest --coverage",
"dev": "vite",
"preview": "vite preview",
"lint": "eslint src/**/*.{js,jsx} --ignore-pattern 'public/' --ignore-pattern 'build/' --fix",
"format": "prettier src/**/*.{js,jsx} --single-quote --write",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"now": "ENV=test jest specs/screens/home/sagas/getAll*.spec.js --maxWorkers=2"
},
"dependencies": {
"@reduxjs/toolkit": "^2.0.1",
"axios": "^1.6.7",
"axios-mock-adapter": "^1.22.0",
"bootstrap": "^5.2.0",
"history": "^5.3.0",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"react": "^18.2.0",
"react-bootstrap": "^2.10.1",
"react-dom": "^18.2.0",
"react-redux": "^9.1.0",
"react-router-dom": "7",
"redux": "^5.0.1",
"redux-first-history": "^5.2.0",
"redux-logger": "^3.0.6",
"redux-saga": "^1.3.0",
"reselect": "^5.1.0",
"vite": "^5.1.1"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/plugin-syntax-jsx": "^7.23.3",
"@babel/preset-env": "^7.23.9",
"@babel/preset-react": "^7.23.3",
"@testing-library/jest-dom": "^6.4.1",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@vitejs/plugin-react-swc": "^3.6.0",
"babel-jest": "^29.7.0",
"eslint": "^8.23.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-react": "^7.33.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^24.0.0",
"redux-mock-store": "^1.5.4",
"redux-saga-test-plan": "^4.0.6",
"sass": "^1.77.2",
"vite-plugin-eslint": "^1.8.1"
}
}