-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.93 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
{
"name": "population-metrics",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint '**/*.{js,jsx}'; stylelint '**/*.{css,scss}'",
"lint:fix": "eslint '**/*.{js,jsx}' --fix; stylelint '**/*.{css,scss}' --fix",
"preview": "vite preview",
"test": "vitest"
},
"engines": {
"node": ">=16.x"
},
"lint-staged": {
"**/*.{js,jsx}": "yarn eslint '**/*.{js,jsx}",
"**/*.{css,scss}": "yarn stylelint '**/*.{css,scss}'",
"**/*.{css,scss,js,jsx,html}": "yarn prettier . -w"
},
"dependencies": {
"@reduxjs/toolkit": "^1.9.5",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"axios": "^1.4.0",
"jsdom": "^22.0.0",
"msw": "^1.2.1",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.5",
"react-router-dom": "^6.11.2",
"redux-mock-store": "^1.5.4",
"uuid": "^9.0.0",
"vitest": "^0.31.1"
},
"devDependencies": {
"@babel/core": "7.x",
"@babel/eslint-parser": "7.x",
"@babel/plugin-syntax-jsx": "7.x",
"@babel/preset-react": "7.x",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react": "^4.0.0",
"autoprefixer": "^10.4.14",
"eslint": "7.x",
"eslint-config-airbnb": "18.x",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "2.x",
"eslint-plugin-jsx-a11y": "6.x",
"eslint-plugin-react": "7.x",
"eslint-plugin-react-hooks": "4.x",
"eslint-plugin-react-refresh": "^0.3.4",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"postcss": "^8.4.23",
"prettier": "^2.8.8",
"sass": "^1.62.1",
"stylelint": "13.x",
"stylelint-config-standard": "21.x",
"stylelint-csstree-validator": "1.x",
"stylelint-scss": "3.x",
"tailwindcss": "^3.3.2",
"vite": "^4.3.2"
}
}