-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1.06 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
{
"name": "pacedream-evaluation",
"version": "1.0.0",
"description": "",
"main": "backend/server.js",
"scripts": {
"start": "nodemon . -L",
"build": "sudo chown -R 1000:1000 ./backend/database/data && sudo chmod -R 755 ./backend/database/data && docker compose up -d --build && npm run logs",
"remove": "docker compose stop && docker compose rm",
"logs": "docker logs api -f",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pedrohassen/pacedream-evaluation.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/pedrohassen/pacedream-evaluation/issues"
},
"homepage": "https://github.com/pedrohassen/pacedream-evaluation#readme",
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"mongoose": "^8.0.3",
"nodemon": "^3.0.2"
}
}