-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.02 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
{
"type": "module",
"name": "meepoktah",
"version": "0.2.0",
"description": "UCLA SSA Portal",
"author": "UCLA SSA",
"license": "MIT",
"engines": {
"node": "18.x"
},
"dependencies": {
"axios": "^1.7.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "4.4.0",
"react-responsive-carousel": "^3.2.23",
"react-router-dom": "6.3.0",
"react-scroll": "1.8.7",
"styled-components": "5.3.5"
},
"scripts": {
"start": "npx http-server ./dist",
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview"
},
"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"
]
},
"devDependencies": {
"@testing-library/react": "^14.2.2",
"@vitejs/plugin-react": "^4.2.1",
"vite": "^5.2.7"
}
}