-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.77 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.77 KB
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
{
"name": "portafoglio",
"version": "1.0.0",
"description": "My portfolio",
"main": "index.js",
"scripts": {
"start": "if-env NODE_ENV=production npm run start:prod || npm run start:dev",
"prestart:prod": "npm install",
"start:prod": "cd client && npm run start:prod",
"wrongstart:prod": "node server.js",
"start:dev": "concurrently \"nodemon --ignore 'client/*'\" \"npm run client\"",
"client": "cd client && npm run start",
"seed": "sequelize db:seed:all",
"fullseed": "npm-run-all start:prod seed",
"build": "npm install && cd client && npm run build "
},
"repository": {
"type": "git",
"url": "git+https://github.com/MrDawit/Portafoglio_react.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/MrDawit/Portafoglio_react/issues"
},
"dependencies": {
"@babel/core": "^7.24.8",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/plugin-transform-private-property-in-object": "^7.24.7",
"@popperjs/core": "^2.11.7",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"bootstrap": "^5.2.3",
"concurrently": "^8.0.1",
"cookie-parser": "^1.4.6",
"core-js": "^3.29.1",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"googleapis": "^114.0.0",
"if-env": "^1.0.4",
"nodemailer": "^6.9.1",
"nodemon": "^2.0.22",
"react": "^18.2.0",
"react-bootstrap": "^2.7.2",
"react-dom": "^18.2.0",
"react-lazy-load": "^4.0.1",
"run-all": "^1.0.1"
},
"devDependencies": {
"@babel/core": "^7.24.8",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/plugin-transform-private-property-in-object": "^7.24.7",
"@babel/preset-env": "^7.24.8",
"gh-pages": "^5.0.0"
}
}