-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.43 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
{
"name": "carlgunderson.github.io",
"version": "1.0.0",
"description": "Simple portfolio site showcasing previous projects.",
"author": "Carl Gunderson",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/carlgunderson/carlgunderson.github.io.git"
},
"homepage": "https://github.com/carlgunderson/carlgunderson.github.io#readme",
"bugs": {
"url": "https://github.com/carlgunderson/carlgunderson.github.io/issues"
},
"private": true,
"main": "src/index.jsx",
"type": "module",
"scripts": {
"clean": "rm -r dist/*",
"start": "npm run dev",
"dev": "vite",
"build": "vite build",
"preview": "vite preview --port 8081"
},
"dependencies": {
"@emotion/babel-plugin": "^11.10.2",
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@mui/icons-material": "^5.15.2",
"@mui/lab": "^5.0.0-alpha.158",
"@mui/material": "^5.15.2",
"plausible-tracker": "^0.3.8",
"query-string": "6.12.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-router-dom": "^6.21.1",
"styled-components": "^5.3.6"
},
"devDependencies": {
"@babel/eslint-parser": "^7.17.0",
"@babel/preset-react": "^7.18.6",
"@vitejs/plugin-react": "^4.2.1",
"dotenv": "^16.3.1",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"vite": "^4.5.3"
}
}