-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
127 lines (127 loc) · 3.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
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
118
119
120
121
122
123
124
125
126
127
{
"name": "karol-sobolewski-portfolio",
"version": "0.1.0",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.32",
"@fortawesome/free-brands-svg-icons": "^5.15.1",
"@fortawesome/free-solid-svg-icons": "^5.15.1",
"@fortawesome/react-fontawesome": "^0.1.13",
"@iconify-icons/icomoon-free": "^1.1.0",
"@iconify-icons/logos": "^1.1.6",
"@iconify-icons/simple-icons": "^1.1.12",
"@iconify/react": "^1.1.4",
"@icons-pack/react-simple-icons": "^4.0.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"axios": "^0.21.0",
"bootstrap": "^4.6.0",
"brotli-webpack-plugin": "^1.1.0",
"clsx": "^1.1.1",
"compression-webpack-plugin": "^7.1.1",
"concurrently": "^5.3.0",
"cors": "^2.8.5",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"eslint": "^7.11.0",
"eslint-plugin-css-modules": "^2.11.0",
"express": "^4.17.1",
"express-static-gzip": "^2.1.0",
"gsap": "^3.6.1",
"mongodb": "^3.6.3",
"mongoose": "^5.11.1",
"netlify-cli": "^3.29.3",
"node-sass": "^4.14.0",
"nodemon": "^2.0.6",
"npm-run-all": "^4.1.5",
"pattern.css": "^1.0.0",
"prop-types": "^15.7.2",
"react": "^0.0.0-experimental-8af27aeed",
"react-animated-burgers": "^1.2.8",
"react-awesome-slider": "^4.1.0",
"react-bootstrap": "^1.4.3",
"react-dom": "^0.0.0-experimental-8af27aeed",
"react-google-maps": "^9.4.5",
"react-modal": "^3.12.1",
"react-modal-hook": "^3.0.0",
"react-redux": "^7.2.2",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-router-hash-link": "^2.4.0",
"react-router-transition": "^2.1.0",
"react-scripts": "^4.0.2",
"react-snap-scroll": "^0.0.5",
"react-spinners-css": "^1.2.2",
"react-test-renderer": "^17.0.1",
"react-thunk": "^1.0.0",
"react-transition-group": "^4.4.1",
"react-uuid": "^1.0.2",
"recompose": "^0.30.0",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0",
"scroll-snap": "^3.1.0",
"smoothscroll-polyfill": "^0.4.4",
"styled-components": "^5.0.0",
"web-vitals": "^0.2.4"
},
"scripts": {
"start": "nodemon backend/server.js",
"start-dev": "concurrently --kill-others \"yarn:run-p start:* \" \"nodemon backend/server.js\"",
"start-server": "npx nodemon backend/server.js",
"start-silent": "run-p start > /dev/null",
"start:react": "react-scripts start",
"start-and-test": "run-p start-silent test ",
"build": "react-scripts build",
"test": "react-scripts test --noStackTrace",
"test-all": "react-scripts test --watchAll=false --noStackTrace",
"test-related": "react-scripts test --watchAll=false --noStackTrace --findRelatedTests",
"eject": "react-scripts eject"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.js": [
"yarn test-related --",
"eslint"
]
},
"eslintConfig": {
"extends": [
"wesbos",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"babel-eslint": "10.1.0",
"eslint-config-airbnb": "18.2.0",
"eslint-config-prettier": "6.11.0",
"eslint-config-wesbos": "1.0.1",
"eslint-plugin-html": "6.1.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-react": "7.20.6",
"eslint-plugin-react-hooks": "4.1.2",
"husky": "^4.3.0",
"lint-staged": "^10.5.2",
"prettier": "^2.2.1",
"react-router-hash-link": "^2.4.0"
}
}