-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.33 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
{
"name": "personal-portfolio",
"version": "1.0.0",
"description": "personal Portfolio of Charley McGowan",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "react-scripts build",
"start": "react-scripts start",
"lint": "eslint src/** src/**/**; exit 0",
"lint-fix": "eslint src/** src/**/** --fix; exit 0",
"win-lint": "eslint src/** src/**/**",
"win-lint-fix": "eslint src/** src/**/** --fix"
},
"author": "Charley McGowan",
"license": "MIT",
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@fontsource/roboto": "^4.5.8",
"@mui/icons-material": "^5.11.0",
"@mui/material": "^5.11.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-particles": "^2.3.2",
"react-responsive-carousel": "^3.2.23",
"react-scripts": "^5.0.1",
"tsparticles": "^2.3.2",
"web-vitals": "^2.1.4"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-plugin-react": "^7.31.8"
},
"eslintConfig": {
"extends": [
"react-app",
"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"
]
}
}