-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.1 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
{
"name": "thephonebook",
"version": "1.0.0",
"description": "Part 3 Exercise",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"test": "\"echo \\\"Error: no test specified\\\" && exit 1\"",
"build:ui": "rm -rf build && mkdir build && cd '../FullStackOpen/part2/The Phonebook' && npm run build && xcopy <'C:/Users/Saad/FullStackOpen/part2/The Phonebook/build/'> 'C:/Users/Saad/ThePhonebook/build/'",
"deploy": "flyctl deploy",
"deploy:full": "npm run build:ui && npm run deploy",
"logs:prod": "flyctl logs",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/ssqureshi/ThePhonebook.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ssqureshi/ThePhonebook/issues"
},
"homepage": "https://github.com/ssqureshi/ThePhonebook#readme",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"mongoose": "^6.8.0",
"morgan": "^1.10.0"
},
"devDependencies": {
"eslint": "^8.29.0",
"nodemon": "^2.0.20"
}
}