-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.21 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
{
"name": "portfolio",
"version": "0.1.0",
"private": true,
"type": "module",
"dependencies": {
"autoprefixer": "^10.4.16",
"framer-motion": "^10.16.14",
"p5": "^1.4.0",
"postcss": "^8.4.32",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.12.0",
"react-p5": "^1.3.21",
"react-router-dom": "^5",
"react-transition-group": "^4.3.0",
"tailwindcss": "^3.3.6"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.1.5",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@vitejs/plugin-react": "^4.2.1",
"dotenv": "^8.2.0",
"prettier": "^3.1.0",
"vite": "^5.0.5",
"vitest": "^1.0.1"
},
"scripts": {
"dev": "npx vite serve src",
"preview": "npx vite preview --port 3000",
"build": "yarn install --frozen-lockfile && npx vite build src"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"babel": {
"plugins": [
"@babel/plugin-proposal-export-default-from"
]
}
}