forked from CUNYTechPrep/project-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 768 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 768 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
{
"name": "api-backend",
"version": "1.0.0",
"description": "An api backend",
"main": "index.js",
"scripts": {
"start": "node api/app.js",
"dev": "nodemon -r dotenv/config api/app.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "cd client && npm install && npm run build"
},
"author": "Edgardo Molina",
"license": "ISC",
"dependencies": {
"@react-google-maps/api": "^2.7.0",
"express": "^4.17.1",
"morgan": "^1.10.0",
"pg": "^8.7.1",
"pg-hstore": "^2.3.4",
"react-icons": "^4.3.1",
"react-router-dom": "^6.0.2",
"sequelize": "^6.7.0"
},
"devDependencies": {
"dotenv": "^8.2.0",
"nodemon": "^2.0.14"
},
"nodemonConfig": {
"ignore": [
"client/"
]
}
}