-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.11 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
{
"name": "Portfolio",
"version": "1.0.0",
"type": "module",
"main": "./server/server.js",
"repository": "https://martapolii.github.io/www.martapolii.com/",
"author": "martapolii <mpolish3@my.centennialcollege.ca>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.25.8",
"@babel/preset-env": "^7.25.8",
"babel-loader": "^9.2.1",
"concurrently": "^9.0.1",
"nodemon": "^2.0.22"
},
"scripts": {
"dev": "concurrently \"vite --config ./client/vite.config.js\" \"nodemon ./server/server.js\"",
"start": "node ./server/server.js",
"build": "vite build --config ./client/vite.config.js",
"lint": "eslint src --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview --config ./client/vite.config.js"
},
"dependencies": {
"body-parser": "^1.20.3",
"compression": "^1.7.4",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"global": "^4.4.0",
"helmet": "^8.0.0",
"lodash": "^4.17.21",
"mongodb": "^6.9.0",
"mongoose": "^8.7.2",
"vite": "^5.4.9"
}
}