-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 878 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 878 Bytes
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
{
"name": "capibafit",
"version": "1.0.0",
"type": "module",
"description": "Projeto de atividade física com recompensas Capiba",
"main": "index.js",
"scripts": {
"start:backend": "node src/backend/server.js",
"start:frontend": "npm --prefix src/frontend run dev",
"start": "concurrently \"npm run start:backend\" \"npm run start:frontend\"",
"test": "jest",
"postinstall": "npm install --prefix src/frontend"
},
"keywords": [
"nodejs",
"express",
"capiba",
"recife"
],
"dependencies": {
"axios": "^1.13.2",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^4.18.2",
"pg": "^8.16.3"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"babel-jest": "^30.2.0",
"concurrently": "^8.2.2",
"jest": "^29.7.0"
},
"author": "",
"license": "ISC"
}