-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.35 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
{
"name": "prime-solo-project",
"version": "1.0.0",
"private": true,
"engines": {
"node": "18.x"
},
"dependencies": {
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@fontsource-variable/nunito": "^5.0.17",
"@mui/icons-material": "^5.15.11",
"@mui/material": "^5.15.10",
"axios": "^1.6.2",
"bcryptjs": "^2.4.3",
"cookie-session": "^2.0.0",
"dotenv": "^16.0.3",
"express": "^4.17.1",
"framer-motion": "^11.0.5",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"pg": "^8.5.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^7.2.6",
"react-router-dom": "^5.3.4",
"redux": "^4.1.2",
"redux-logger": "^3.0.6",
"redux-saga": "^1.1.3"
},
"scripts": {
"start": "node server/server.js",
"client": "vite --host",
"server": "nodemon --watch server server/server.js",
"build": "vite build",
"test": "vitest"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.2.1",
"nodemon": "^2.0.4",
"vite": "^5.0.7",
"vitest": "^1.3.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"heroku-run-build-script": true
}