-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 985 Bytes
/
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": "phonebook-backend",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start-prod": "node index.js",
"dev": "nodemon index.js",
"build:ui": "rm -rf dist && cd ./frontend && npm run build && cp -r dist ",
"build:dev": "rm -rf dist && cd ./frontend && npm run build && cp -r ./dist ../dist",
"deploy:full": "npm run build:ui && git add . && git commit -m uibuild && git push",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint ."
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"eslint-plugin-react-hooks": "^4.6.2",
"express": "^4.21.0",
"mongoose": "^8.6.2",
"morgan": "^1.10.0"
},
"devDependencies": {
"@eslint/js": "^9.4.0",
"@stylistic/eslint-plugin-js": "^2.1.0",
"eslint": "^8.57.1",
"eslint-plugin-react": "^7.37.1",
"globals": "^15.4.0",
"nodemon": "^3.1.3"
}
}