-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 2.57 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
{
"name": "weather-app",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "serve -s build",
"dev": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test --watchAll=false -u",
"test:watch": "react-app-rewired test",
"test:coverage": "npm test -- --coverage",
"eslint": "eslint ./src",
"stylelint": "stylelint ./src/**/*.scss",
"lint": "npm run eslint && npm run stylelint",
"commit": "npm run test && npm run build && npm run lint",
"eject": "react-scripts eject"
},
"jest": {
"moduleNameMapper": {
"\\.(svg|jpg|png|jpeg)$": "<rootDir>/empty-module.js",
"^.+\\.(css|scss|less)$": "identity-obj-proxy",
"_atoms/(.*)$": "<rootDir>/src/components/atoms/$1",
"_molecules/(.*)$": "<rootDir>/src/components/molecules/$1",
"_organisms/(.*)$": "<rootDir>/src/components/organisms/$1",
"_config/(.*)$": "<rootDir>/src/config/$1",
"_images/(.*)$": "<rootDir>/src/images/$1",
"_pages/(.*)$": "<rootDir>/src/pages/$1",
"_routes/(.*)$": "<rootDir>/src/routes/$1",
"_utils/(.*)$": "<rootDir>/src/utils/$1",
"_hooks/(.*)$": "<rootDir>/src/hooks/$1",
"_helpers/(.*)$": "<rootDir>/src/helpers/$1",
"_services/(.*)$": "<rootDir>/src/services/$1"
}
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all",
"ie 10"
],
"husky": {
"hooks": {
"pre-commit": "npm run commit",
"pre-push": "npm run commit"
}
},
"dependencies": {
"@testing-library/jest-dom": "^5.11.5",
"@testing-library/react": "^11.1.2",
"@testing-library/user-event": "^12.2.2",
"axios": "^0.21.0",
"classnames": "^2.2.6",
"js-cookie": "^2.2.1",
"moment": "^2.29.1",
"node-sass": "4.14.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-icons": "^3.11.0",
"react-router-dom": "^5.2.0",
"react-scripts": "^4.0.0",
"react-toastify": "^6.1.0",
"sass-resources-loader": "^2.1.1",
"serve": "^11.3.2"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.0",
"prettier": "^2.1.2",
"react-app-rewired": "^2.1.6",
"stylelint": "^13.7.2",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-scss": "^3.18.0"
}
}