-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.32 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
38
39
40
41
42
43
44
{
"name": "fso-phonebook-backend",
"version": "1.0.0",
"description": "Backend exercises for the phonebook application",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build:ui": "rm -rf dist && cd /home/julien/GitHub/fso-phonebook-frontend && npm run build && cp -r dist /home/julien/GitHub/fso-phonebook-backend",
"deploy:full": "npm run build:ui && git add . && git commit -m uibuild && git push",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/Daembius/fso-phonebook-backend.git"
},
"keywords": [
"phonebook"
],
"author": "Julien Mayard",
"license": "MIT",
"bugs": {
"url": "https://github.com/Daembius/fso-phonebook-backend/issues"
},
"homepage": "https://github.com/Daembius/fso-phonebook-backend#readme",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"mongoose": "^8.7.2",
"morgan": "^1.10.0"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@stylistic/eslint-plugin-js": "^2.10.1",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.12.0",
"nodemon": "^3.1.4",
"prettier": "^3.3.3"
}
}