-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
34 lines (34 loc) · 1.03 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
{
"name": "EngageSphere-Test-Design-Masterclass-Turma-3",
"version": "1.0.0",
"description": "Sample project with a Node.js backend and a React frontend.",
"scripts": {
"install:frontend": "cd frontend && npm install",
"install:backend": "cd backend && npm install",
"start:frontend": "cd frontend && npm start",
"start:server": "cd backend && npm start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wlsf82/EngageSphere-Test-Design-Masterclass-Turma-3.git"
},
"keywords": [],
"author": "Walmyr Filho <wlsf82@gmail.com> (https://walmyr.dev)",
"license": "MIT",
"homepage": "https://github.com/wlsf82/EngageSphere-Test-Design-Masterclass-Turma-3/blob/main/README.md",
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}